This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/navigation-refactor' of https://github.com/fros…
…chdesign/zf2 into feature/navigation-refactor-cs
- Loading branch information
37 parents
b4124fc
+
f4e1da0
+
a8c70a8
+
50d3c5d
+
79180fa
+
f6f9386
+
8ed6590
+
d79a4a4
+
3958052
+
eae6146
+
1cc7a46
+
1d9542f
+
a22d6e2
+
3496b67
+
9398e77
+
687d980
+
900dc7d
+
21f6363
+
0eeb6ff
+
8c442a3
+
adf1f8e
+
c2ceb18
+
9b17a1c
+
d5dab4a
+
346a62a
+
9808633
+
bdeec54
+
1a2506a
+
f5f3d02
+
b623064
+
4338bf4
+
bdababf
+
4054000
+
4449c16
+
d3d8b33
+
8427cf8
+
3fe77d8
commit ecbe771
Showing
12 changed files
with
336 additions
and
188 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
<?php | ||
|
||
/** | ||
* @namespace | ||
*/ | ||
namespace Zend\Navigation\Exception; | ||
|
||
use Zend\Navigation\Exception; | ||
|
||
class BadMethodCallException extends \InvalidArgumentException implements Exception | ||
class BadMethodCallException extends \InvalidArgumentException | ||
implements Exception | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* @namespace | ||
*/ | ||
namespace Zend\Navigation\Exception; | ||
|
||
use Zend\Navigation\Exception; | ||
|
||
class DomainException extends \DomainException implements Exception | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
<?php | ||
|
||
/** | ||
* @namespace | ||
*/ | ||
namespace Zend\Navigation\Exception; | ||
|
||
use Zend\Navigation\Exception; | ||
|
||
class InvalidArgumentException extends \InvalidArgumentException implements Exception | ||
class InvalidArgumentException extends \InvalidArgumentException | ||
implements Exception | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
<?php | ||
|
||
/** | ||
* @namespace | ||
*/ | ||
namespace Zend\Navigation\Exception; | ||
|
||
use Zend\Navigation\Exception; | ||
|
||
class OutOfBoundsException extends \InvalidArgumentException implements Exception | ||
class OutOfBoundsException extends \InvalidArgumentException | ||
implements Exception | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.