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/46'
Browse files Browse the repository at this point in the history
Close #46
  • Loading branch information
weierophinney committed Jan 11, 2016
2 parents 2a684f2 + 4651dc6 commit a78d6c4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@

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

## 2.6.1 - TBD
## 2.7.0 - TBD

### Added

- [#60](https://github.com/zendframework/zend-servicemanager/pull/60) adds forward compatibility features for
`AbstractPluingManager` and introduces `InvokableFactory` to help forward migration to version 3.
- [#60](https://github.com/zendframework/zend-servicemanager/pull/60) adds
forward compatibility features for `AbstractPluingManager` and introduces
`InvokableFactory` to help forward migration to version 3.

### Deprecated

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

### Fixed

- Nothing.
- [#46](https://github.com/zendframework/zend-servicemanager/pull/46) updates
the exception hierarchy to inherit from the container-interop exceptions.
This ensures that all exceptions thrown by the component follow the
recommendations of that project.

## 2.6.0 - 2015-07-23

Expand Down
4 changes: 3 additions & 1 deletion src/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

namespace Zend\ServiceManager\Exception;

interface ExceptionInterface
use Interop\Container\Exception\ContainerException;

interface ExceptionInterface extends ContainerException
{
}
5 changes: 4 additions & 1 deletion src/Exception/ServiceNotFoundException.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@

namespace Zend\ServiceManager\Exception;

class ServiceNotFoundException extends InvalidArgumentException
use Interop\Container\Exception\NotFoundException;

class ServiceNotFoundException extends InvalidArgumentException implements
NotFoundException
{
}

0 comments on commit a78d6c4

Please sign in to comment.