Skip to content

Instantly share code, notes, and snippets.

@kanian
Created March 21, 2019 09:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kanian/bb1b715a7f447c38390cdeaff19e7fbb to your computer and use it in GitHub Desktop.
Save kanian/bb1b715a7f447c38390cdeaff19e7fbb to your computer and use it in GitHub Desktop.
Using ContainerX
<?php
use Kanian\ContainerX\ContainerX;
$container = new ContainerX();
$container['chauffeur'] = HumanDriver::class;
$container['limo'] = Car::class;
$limo = $container['limo'];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment