| 1 | <?php namespace Arcanesoft\Foundation\ViewComposers\System; |
||
| 11 | class ServerRequirementsComposer |
||
| 12 | { |
||
| 13 | /* ------------------------------------------------------------------------------------------------ |
||
| 14 | | Constants |
||
| 15 | | ------------------------------------------------------------------------------------------------ |
||
| 16 | */ |
||
| 17 | const VIEW_NAME = 'foundation::system.information._includes.server-requirements'; |
||
| 18 | |||
| 19 | /* ------------------------------------------------------------------------------------------------ |
||
| 20 | | Main Functions |
||
| 21 | | ------------------------------------------------------------------------------------------------ |
||
| 22 | */ |
||
| 23 | /** |
||
| 24 | * Compose the view. |
||
| 25 | * |
||
| 26 | * @param \Illuminate\View\View $view |
||
| 27 | */ |
||
| 28 | public function compose(View $view) |
||
| 39 | |||
| 40 | /* ------------------------------------------------------------------------------------------------ |
||
| 41 | | Other Functions |
||
| 42 | | ------------------------------------------------------------------------------------------------ |
||
| 43 | */ |
||
| 44 | /** |
||
| 45 | * Check the server requirements. |
||
| 46 | * |
||
| 47 | * @param array $requirements |
||
| 48 | * |
||
| 49 | * @return \Illuminate\Support\Collection |
||
| 50 | */ |
||
| 51 | private function checkRequirements(array $requirements) |
||
| 59 | } |
||
| 60 |