| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | abstract class ConfigurationCommand extends Command |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Singleton instance of Configuration |
||
| 12 | * |
||
| 13 | * @var Configuration |
||
| 14 | */ |
||
| 15 | protected $configuration; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Constructor |
||
| 19 | * |
||
| 20 | * @param string|null $name The name of the command; passing null means it must be set in configure() |
||
| 21 | */ |
||
| 22 | public function __construct(string $name = null) |
||
| 27 | } |
||
| 28 | |||
| 29 | final private function getConfiguration(): Configuration |
||
| 34 |