Skip to content

Commit

Permalink
PHP 5.2 compatiblity
Browse files Browse the repository at this point in the history
Namespaces are not needed so far.

FreshRSS@aacd1ff#commitcomment-11503581
  • Loading branch information
Alkarex committed Jun 3, 2015
1 parent 38f6dbd commit 214a5cc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/Exceptions/ContextException.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
/**
* An exception raised when a context is invalid
*/
class FreshRSS_Context_Exception extends \Exception {
class FreshRSS_Context_Exception extends Exception {

}
2 changes: 1 addition & 1 deletion app/Exceptions/DAOException.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php

class FreshRSS_DAO_Exception extends \Exception {
class FreshRSS_DAO_Exception extends Exception {

}
2 changes: 1 addition & 1 deletion app/Exceptions/EntriesGetterException.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php

class FreshRSS_EntriesGetter_Exception extends \Exception {
class FreshRSS_EntriesGetter_Exception extends Exception {

}
2 changes: 1 addition & 1 deletion app/Exceptions/FeedException.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php

class FreshRSS_Feed_Exception extends \Exception {
class FreshRSS_Feed_Exception extends Exception {

}

0 comments on commit 214a5cc

Please sign in to comment.