| 1 | <?php |
||
| 30 | abstract class ReaderAbstract extends StaticAbstract implements ReaderInterface |
||
| 31 | { |
||
| 32 | /** |
||
| 33 | * Check path existance & readability |
||
| 34 | * |
||
| 35 | * @param string $path |
||
| 36 | * @throws NotFoundException if $path not found |
||
| 37 | * @throws RuntimeException if $path not readable |
||
| 38 | * @access protected |
||
| 39 | * @static |
||
| 40 | */ |
||
| 41 | protected static function checkPath(/*# string */ $path) |
||
| 57 | } |
||
| 58 |