This repository has been archived by the owner on Jan 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of git://github.com/zendframework/zf2 into cach…
…e_interfaces
- Loading branch information
50 parents
320a9ea
+
954b79b
+
3c40dd7
+
c18f322
+
7427dc0
+
87098a5
+
2ab5cd1
+
a18ab98
+
1c268a7
+
3bd0f91
+
e286a21
+
4feaafa
+
e924eaa
+
8dd3ce8
+
4e1e408
+
89b12e3
+
c670ac1
+
00d03bb
+
bd91a55
+
2d86845
+
1694b28
+
b36e3e8
+
f10ca90
+
b37dc0b
+
a729860
+
a4b177e
+
5e10b10
+
0db5f75
+
bcb7bb1
+
f7074c9
+
7529e8f
+
ba3a8b2
+
76de94f
+
6b68a23
+
0b35e2c
+
c983de4
+
96e1faf
+
da74c7f
+
c2aff03
+
a05cd2c
+
c2d82ed
+
a13730b
+
6259074
+
11e375c
+
ee842b2
+
c71c199
+
93b7dbd
+
0b6c63f
+
a97fc11
+
c64933f
commit 547a1fc
Showing
9 changed files
with
32 additions
and
15 deletions.
There are no files selected for viewing
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,5 +1,6 @@ | ||
Zend/Amf | ||
Zend/Date | ||
Zend/Dojo | ||
Zend/Queue | ||
Zend/Service | ||
Zend/Test | ||
|
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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?php | ||
namespace Zend\Test\Exception; | ||
|
||
interface ExceptionInterface | ||
{} |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
|
||
namespace Zend\Test\Exception; | ||
|
||
class InvalidArgumentException | ||
extends \InvalidArgumentException | ||
implements ExceptionInterface | ||
{} |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
|
||
namespace Zend\Test\PHPUnit\Exception; | ||
|
||
use Zend\Test\Exception\ExceptionInterface as Exception; | ||
|
||
interface ExceptionInterface extends 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,7 +1,10 @@ | ||
<?php | ||
|
||
namespace Zend\Test\PHPUnit\Exception; | ||
|
||
use Zend\Test\Exception; | ||
|
||
class InvalidArgumentException | ||
extends \InvalidArgumentException | ||
implements \Zend\Test\PHPUnit\Exception | ||
{} | ||
extends Exception\InvalidArgumentException | ||
implements ExceptionInterface | ||
{} |