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 42
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' into rfc/escaper
- Loading branch information
75 parents
dfb38ed
+
b796f3d
+
d49dbc2
+
547433c
+
0c9ce04
+
a76e26a
+
2914396
+
7ca3746
+
f1b292d
+
406112f
+
5a9edd3
+
f65c9f6
+
c54156c
+
5e55e82
+
352e42b
+
fa459f5
+
3eff137
+
3648ab6
+
4096125
+
0037391
+
9bdfcd9
+
6cd1498
+
ecac99d
+
199ed75
+
b8507f7
+
ef400bd
+
decb6ae
+
860b39d
+
243eca6
+
d56af72
+
1aaf7f9
+
26b27a9
+
40cd50e
+
986898b
+
d2780b7
+
49abb1d
+
cb5a738
+
21d3bef
+
4748875
+
3331086
+
c4a3687
+
54465f7
+
4ad15e4
+
9aa47da
+
619d24d
+
ddfa8f2
+
8e7172b
+
e5fc69f
+
284a721
+
6d3db4c
+
b99e8c3
+
a52dcef
+
1d21066
+
cccc24c
+
81bd699
+
bfed36c
+
b56e9b8
+
765b017
+
b2cddce
+
1c63803
+
dd490e0
+
c0425c2
+
128ed7f
+
4d88940
+
94b3f1e
+
9a0d8cf
+
12135ad
+
1169a58
+
6cdb5dc
+
15950e5
+
7e68fb2
+
4bda4a9
+
537893f
+
4cf10f8
+
dd5b294
commit de5ff9e
Showing
128 changed files
with
2,322 additions
and
3,096 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
|
||
namespace Zend\Feed\Exception; | ||
|
||
class BadMethodCallException | ||
extends \BadMethodCallException | ||
implements 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
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\Feed\Exception; | ||
|
||
class InvalidArgumentException | ||
extends \InvalidArgumentException | ||
implements 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\Feed\Exception; | ||
|
||
class RuntimeException | ||
extends \RuntimeException | ||
implements 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
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,8 @@ | ||
<?php | ||
|
||
namespace Zend\Feed\PubSubHubbub\Exception; | ||
|
||
use Zend\Feed\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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
namespace Zend\Feed\PubSubHubbub\Exception; | ||
|
||
use Zend\Feed\Exception; | ||
|
||
class InvalidArgumentException | ||
extends Exception\InvalidArgumentException | ||
implements 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,10 @@ | ||
<?php | ||
|
||
namespace Zend\Feed\PubSubHubbub\Exception; | ||
|
||
use Zend\Feed\Exception; | ||
|
||
class RuntimeException | ||
extends Exception\RuntimeException | ||
implements ExceptionInterface | ||
{} |
Oops, something went wrong.