This repository was archived by the owner on Jan 29, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +29
-3
lines changed Expand file tree Collapse file tree 5 files changed +29
-3
lines changed Original file line number Diff line number Diff line change 1010namespace Zend \Expressive \Template ;
1111
1212use Traversable ;
13- use Zend \Expressive \Exception ;
1413
1514trait ArrayParametersTrait
1615{
Original file line number Diff line number Diff line change 1010namespace Zend \Expressive \Template ;
1111
1212use Traversable ;
13- use Zend \Expressive \Exception ;
1413use Zend \Stdlib \ArrayUtils ;
1514
1615trait DefaultParamsTrait
Original file line number Diff line number Diff line change 1+ <?php
2+ /**
3+ * Zend Framework (http://framework.zend.com/)
4+ *
5+ * @see https://github.com/zendframework/zend-expressive for the canonical source repository
6+ * @copyright Copyright (c) 2015 Zend Technologies USA Inc. (http://www.zend.com)
7+ * @license https://github.com/zendframework/zend-expressive/blob/master/LICENSE.md New BSD License
8+ */
9+
10+ namespace Zend \Expressive \Template \Exception ;
11+
12+ interface ExceptionInterface
13+ {
14+ }
Original file line number Diff line number Diff line change 1+ <?php
2+ /**
3+ * Zend Framework (http://framework.zend.com/)
4+ *
5+ * @see https://github.com/zendframework/zend-expressive for the canonical source repository
6+ * @copyright Copyright (c) 2015 Zend Technologies USA Inc. (http://www.zend.com)
7+ * @license https://github.com/zendframework/zend-expressive/blob/master/LICENSE.md New BSD License
8+ */
9+
10+ namespace Zend \Expressive \Template \Exception ;
11+
12+ class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
13+ {
14+ }
Original file line number Diff line number Diff line change 99use ArrayIterator ;
1010use PHPUnit_Framework_TestCase as TestCase ;
1111use stdClass ;
12- use Zend \Expressive \Exception \InvalidArgumentException ;
12+ use Zend \Expressive \Template \ Exception \InvalidArgumentException ;
1313
1414class ArrayParametersTraitTest extends TestCase
1515{
You can’t perform that action at this time.
0 commit comments