| 1 | <?php |
||
| 8 | class ConfigsManager |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Initialize new get configuration command. |
||
| 12 | * |
||
| 13 | * @param string $name |
||
| 14 | * |
||
| 15 | * @return \Laravel\Forge\Configs\Commands\GetConfigFileCommand |
||
| 16 | */ |
||
| 17 | public function get(string $name) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Initialize new update configuration command. |
||
| 24 | * |
||
| 25 | * @param string $name |
||
| 26 | * @param string $content |
||
| 27 | * |
||
| 28 | * @return \Laravel\Forge\Configs\Commands\UpdateConfigFileCommand |
||
| 29 | */ |
||
| 30 | public function update(string $name, string $content) |
||
| 36 | } |
||
| 37 |