| Conditions | 8 |
| Paths | 5 |
| Total Lines | 16 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | protected $method; |
||
| 14 | /** |
||
| 15 | * Current script filename. Should most commonly be index.php |
||
| 16 | */ |
||
| 17 | protected $filename; |
||
| 18 | /** |
||
| 19 | * Script path. |
||
| 20 | * For HTTP requests this will be public web server subdirectory |
||
| 21 | * the project is located in. |
||
| 22 | * For CLI request this will be the script path |
||
| 23 | * (full or relative, depending on how the script was called). |
||
| 24 | */ |
||
| 25 | protected $path = ''; |
||
| 26 | /** |
||
| 27 | * Sanitized Framework customized target path. |
||
| 28 | */ |
||
| 29 | protected $target = ''; |
||
| 63 |