Skip to content

Commit

Permalink
Update to use RouteResultObserverInterface from zend-expressive
Browse files Browse the repository at this point in the history
Following on zendframework/zend-expressive#206, this patch updates the
`UrlHelper` to implement `Zend\Expressive\RouteResultObserverInterface` instead
of `Zend\Expressive\Router\RouteResultObserverInterface`, which is now
deprecated.
  • Loading branch information
weierophinney committed Dec 3, 2015
1 parent 6bf85fb commit e391ce7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/UrlHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use Zend\Expressive\Router\Exception\RuntimeException;
use Zend\Expressive\Router\RouterInterface;
use Zend\Expressive\Router\RouteResult;
use Zend\Expressive\Router\RouteResultObserverInterface;
use Zend\Expressive\RouteResultObserverInterface;
use Zend\Expressive\Template\Exception\RenderingException;
use Zend\View\Helper\AbstractHelper;

Expand Down
2 changes: 1 addition & 1 deletion test/UrlHelperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
use Zend\Expressive\Router\Exception\RuntimeException;
use Zend\Expressive\Router\RouterInterface;
use Zend\Expressive\Router\RouteResult;
use Zend\Expressive\Router\RouteResultObserverInterface;
use Zend\Expressive\RouteResultObserverInterface;
use Zend\Expressive\Template\Exception;
use Zend\Expressive\ZendView\UrlHelper;

Expand Down

0 comments on commit e391ce7

Please sign in to comment.