Skip to content

Commit 3a949f4

Browse files
committedMar 14, 2014
Remove old exception classes
1 parent 5ae17ea commit 3a949f4

File tree

5 files changed

+5
-44
lines changed

5 files changed

+5
-44
lines changed
 

‎lib/Rss/Controller/Controller.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Class Controller
77
*
88
* Abstract class that all controllers inherit. Loads config file from app.php and loads Twig so twig template
9-
* responses can be given.
9+
* responses can be given - Extending controllers then don't have to worry about loading config file or twig.
1010
*
1111
* @package Rss\Controller
1212
*/

‎lib/Rss/Exception/DatabaseException.php

-15
This file was deleted.

‎lib/Rss/Exception/InvalidConfigException.php

-14
This file was deleted.

‎lib/Rss/Exception/InvalidDBParameterException.php

-14
This file was deleted.

‎lib/Rss/Validator/RssValidator.php

+4
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,10 @@ public static function validateTitle(\DomElement $element)
104104
}
105105
}
106106

107+
/**
108+
* @param \DOMDocument $doc
109+
* @return bool|string
110+
*/
107111
public static function validateDocTitle(\DOMDocument $doc)
108112
{
109113
$title = $doc->getElementsByTagName('title');

0 commit comments

Comments
 (0)
Please sign in to comment.