@@ -67,10 +67,15 @@ |
||
| 67 | 67 | |
| 68 | 68 | foreach( array_reverse( self::$fcn ) as $name => $fcn ) |
| 69 | 69 | { |
| 70 | - try { |
|
| 70 | + try |
|
| 71 | + { |
|
| 71 | 72 | return call_user_func_array( $fcn->bindTo( $this, static::class ), [$context, $path] ); |
| 72 | - } catch( \Exception $e ) { |
|
| 73 | - if( $e->getCode() !== 404 ) throw $e; |
|
| 73 | + } |
|
| 74 | + catch( \Exception $e ) |
|
| 75 | + { |
|
| 76 | + if( $e->getCode() !== 404 ) { |
|
| 77 | + throw $e; |
|
| 78 | + } |
|
| 74 | 79 | } |
| 75 | 80 | } |
| 76 | 81 | |