| 1 | <?php | ||
| 25 | final class CreateCommand implements Command | ||
| 26 | { | ||
| 27 | /** | ||
| 28 | * @var File | ||
| 29 | */ | ||
| 30 | private $file; | ||
| 31 | |||
| 32 | /** | ||
| 33 | * @var StrategyContainer | ||
| 34 | */ | ||
| 35 | private $strategies; | ||
| 36 | |||
| 37 | /** | ||
| 38 | * Initializes this command. | ||
| 39 | */ | ||
| 40 | 2 | public function __construct(File $file, StrategyContainer $strategies) | |
| 45 | |||
| 46 | /** | ||
| 47 | * Returns the strategyContainer in this command context. | ||
| 48 | */ | ||
| 49 | 1 | public function getStrategies(): StrategyContainer | |
| 53 | |||
| 54 | 1 | public function getFile(): File | |
| 58 | } | ||
| 59 |