Skip to content

Commit

Permalink
Fixed helpers loading
Browse files Browse the repository at this point in the history
  • Loading branch information
xorock committed Feb 5, 2017
1 parent 6c36c51 commit e2455a2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
12 changes: 12 additions & 0 deletions src/Exception/InvalidHelperException.php
@@ -0,0 +1,12 @@
<?php

namespace Zend\Expressive\Phptal\Exception;

use DomainException;
use Interop\Container\Exception\ContainerException;

class InvalidHelperException extends DomainException implements
ContainerException,
ExceptionInterface
{
}
3 changes: 2 additions & 1 deletion src/Exception/MissingHelperException.php
Expand Up @@ -4,6 +4,7 @@

use DomainException;

class MissingHelperException extends DomainException
class MissingHelperException extends DomainException implements
ExceptionInterface
{
}

0 comments on commit e2455a2

Please sign in to comment.