Skip to content
This repository has been archived by the owner on Feb 6, 2020. It is now read-only.

Commit

Permalink
Merge pull request #116 from GeeH/hotfix/implement-container
Browse files Browse the repository at this point in the history
Changed the way ContainerInterface is implemented
  • Loading branch information
weierophinney committed Apr 27, 2016
2 parents 8e435c2 + 7017b1d commit 6c6b737
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/ServiceLocatorInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@

namespace Zend\ServiceManager;

use Interop\Container\ContainerInterface;

/**
* Service locator interface
*/
interface ServiceLocatorInterface
interface ServiceLocatorInterface extends ContainerInterface
{
/**
* Retrieve a registered instance
Expand Down
4 changes: 1 addition & 3 deletions src/ServiceManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@

namespace Zend\ServiceManager;

use Interop\Container\ContainerInterface;

class ServiceManager implements ServiceLocatorInterface, ContainerInterface
class ServiceManager implements ServiceLocatorInterface
{
/**@#+
* Constants
Expand Down

0 comments on commit 6c6b737

Please sign in to comment.