| 1 | <?php |
||
| 28 | class VarLoader |
||
| 29 | { |
||
| 30 | /** |
||
| 31 | * Required variables |
||
| 32 | */ |
||
| 33 | const REQUIRED_VARIABLES = [ |
||
| 34 | 'root', |
||
| 35 | 'skeleton', |
||
| 36 | 'vendor', |
||
| 37 | 'name', |
||
| 38 | 'description', |
||
| 39 | 'homepage', |
||
| 40 | 'author_name', |
||
| 41 | 'author_email', |
||
| 42 | 'author_homepage', |
||
| 43 | 'namespace', |
||
| 44 | 'tests_namespace', |
||
| 45 | ]; |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @return Map |
||
| 49 | */ |
||
| 50 | 2 | public static function collect(): Map |
|
| 64 | } |
||
| 65 |