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

Commit

Permalink
Merge branch 'hotfix/116' into release-2.7
Browse files Browse the repository at this point in the history
Close #116
  • Loading branch information
weierophinney committed Apr 27, 2016
2 parents 8e435c2 + 99431b6 commit a6db4d1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file, in reverse chronological order by release.

## 2.7.6 - TBD
## 2.7.6 - 2016-04-27

### Added

Expand All @@ -18,7 +18,10 @@ All notable changes to this project will be documented in this file, in reverse

### Fixed

- Nothing.
- [#116](https://github.com/zendframework/zend-servicemanager/pull/116) updates
`ServiceLocatorInterface` to extend container-interop's `ContainerInterface`,
as the definitions are compatible. This change will mean that implementing
`ServiceLocatorInterface` will provide a `ContainerInterface` implementation.

## 2.7.5 - 2016-02-02

Expand Down
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 a6db4d1

Please sign in to comment.