Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/Template/ArrayParametersTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
namespace Zend\Expressive\Template;

use Traversable;
use Zend\Expressive\Exception;

trait ArrayParametersTrait
{
Expand Down
1 change: 0 additions & 1 deletion src/Template/DefaultParamsTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
namespace Zend\Expressive\Template;

use Traversable;
use Zend\Expressive\Exception;
use Zend\Stdlib\ArrayUtils;

trait DefaultParamsTrait
Expand Down
14 changes: 14 additions & 0 deletions src/Template/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @see https://github.com/zendframework/zend-expressive for the canonical source repository
* @copyright Copyright (c) 2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-expressive/blob/master/LICENSE.md New BSD License
*/

namespace Zend\Expressive\Template\Exception;

interface ExceptionInterface
{
}
14 changes: 14 additions & 0 deletions src/Template/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @see https://github.com/zendframework/zend-expressive for the canonical source repository
* @copyright Copyright (c) 2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-expressive/blob/master/LICENSE.md New BSD License
*/

namespace Zend\Expressive\Template\Exception;

class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
{
}
2 changes: 1 addition & 1 deletion test/Template/ArrayParametersTraitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use ArrayIterator;
use PHPUnit_Framework_TestCase as TestCase;
use stdClass;
use Zend\Expressive\Exception\InvalidArgumentException;
use Zend\Expressive\Template\Exception\InvalidArgumentException;

class ArrayParametersTraitTest extends TestCase
{
Expand Down