Skip to content

Instantly share code, notes, and snippets.

@lucasdavies
Last active October 20, 2016 10:15
Show Gist options
  • Save lucasdavies/44031115f18dc00b1cb75849032dbb00 to your computer and use it in GitHub Desktop.
Save lucasdavies/44031115f18dc00b1cb75849032dbb00 to your computer and use it in GitHub Desktop.
Example of a Service Locator
<?php
class UserRepository
{
public function __construct(Container $container)
{
$this->container = $container;
}
public function getUser($id)
{
$db = $this->container->get('db');
// ...
}
}
@lucasdavies
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment