diff options
| author | 2015-06-03 20:21:43 +0200 | |
|---|---|---|
| committer | 2015-06-03 20:21:43 +0200 | |
| commit | c009792e660c05a92bb69ed64e89d4c30ec6da41 (patch) | |
| tree | 510fe0d8ffeab40d3273d01fa14ff6be5badf020 | |
| parent | 7aea9b072a5a06e14a49a88f5bdf411d57385545 (diff) | |
| parent | 214a5cc9a4c2b821961bc21f22b4b08e34b5be68 (diff) | |
Merge branch 'FreshRSS/beta' into dev
| -rw-r--r-- | app/Exceptions/ContextException.php | 2 | ||||
| -rw-r--r-- | app/Exceptions/DAOException.php | 2 | ||||
| -rw-r--r-- | app/Exceptions/EntriesGetterException.php | 2 | ||||
| -rw-r--r-- | app/Exceptions/FeedException.php | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/app/Exceptions/ContextException.php b/app/Exceptions/ContextException.php index 8f05eccd6..00934cbfd 100644 --- a/app/Exceptions/ContextException.php +++ b/app/Exceptions/ContextException.php @@ -3,6 +3,6 @@ /** * An exception raised when a context is invalid */ -class FreshRSS_Context_Exception extends \Exception { +class FreshRSS_Context_Exception extends Exception { } diff --git a/app/Exceptions/DAOException.php b/app/Exceptions/DAOException.php index e48e521ab..14bee3403 100644 --- a/app/Exceptions/DAOException.php +++ b/app/Exceptions/DAOException.php @@ -1,5 +1,5 @@ <?php -class FreshRSS_DAO_Exception extends \Exception { +class FreshRSS_DAO_Exception extends Exception { } diff --git a/app/Exceptions/EntriesGetterException.php b/app/Exceptions/EntriesGetterException.php index 8aace1840..3b76195ee 100644 --- a/app/Exceptions/EntriesGetterException.php +++ b/app/Exceptions/EntriesGetterException.php @@ -1,5 +1,5 @@ <?php -class FreshRSS_EntriesGetter_Exception extends \Exception { +class FreshRSS_EntriesGetter_Exception extends Exception { } diff --git a/app/Exceptions/FeedException.php b/app/Exceptions/FeedException.php index 6c0cb3755..abfcbce79 100644 --- a/app/Exceptions/FeedException.php +++ b/app/Exceptions/FeedException.php @@ -1,5 +1,5 @@ <?php -class FreshRSS_Feed_Exception extends \Exception { +class FreshRSS_Feed_Exception extends Exception { } |
