-
Notifications
You must be signed in to change notification settings - Fork 31
Add suppor for symfony's 3.3 service locator #73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,8 +10,8 @@ | |
| namespace PommProject\PommBundle\Model; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don’t undestand the goal of changes in this file. The
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ContainerAware is not compatible with PSR container. And service locator in Sf3.3 returns PSR container interface, Previous sf version their own. |
||
|
|
||
| use PommProject\ModelManager\Model\ModelPooler; | ||
| use Symfony\Component\DependencyInjection\ContainerAwareInterface; | ||
| use Symfony\Component\DependencyInjection\ContainerAwareTrait; | ||
| use Symfony\Component\DependencyInjection\ContainerInterface; | ||
| use Psr\Container\ContainerInterface as PsrContainerInterface; | ||
|
|
||
| /** | ||
| * PommExtension | ||
|
|
@@ -24,11 +24,11 @@ | |
| * @license X11 {@link http://opensource.org/licenses/mit-license.php} | ||
| * @see Extension | ||
| */ | ||
| class ContainerModelPooler extends ModelPooler implements ContainerAwareInterface, ServiceMapInterface | ||
| class ContainerModelPooler extends ModelPooler implements ServiceMapInterface | ||
| { | ||
| use ContainerAwareTrait; | ||
|
|
||
| private $serviceMap = []; | ||
| /** @var PsrContainerInterface|ContainerInterface */ | ||
| private $container; | ||
|
|
||
| /** | ||
| * {@inheritdoc} | ||
|
|
@@ -49,4 +49,17 @@ protected function createClient($class) | |
|
|
||
| return parent::createClient($class); | ||
| } | ||
|
|
||
| /** | ||
| * @param PsrContainerInterface|ContainerInterface $container | ||
| */ | ||
| public function setContainer($container) | ||
| { | ||
| if (!($container instanceof PsrContainerInterface) && !($container instanceof ContainerInterface)) { | ||
| throw new \InvalidArgumentException( | ||
| '$contaner should be instance of Symfony\Component\DependencyInjection\ContainerInterface or Psr\Container\ContainerInterface' | ||
| ); | ||
| } | ||
| $this->container = $container; | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don’t undestand the goal of changes in this file. The
ContainerAwareTraitalready requires aContainerInterface.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as above