| 1 | <?php |
||
| 13 | class ConsoleBase |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * The Symfony console application |
||
| 17 | * |
||
| 18 | * @var Application |
||
| 19 | */ |
||
| 20 | protected $application; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param Application $application |
||
| 24 | */ |
||
| 25 | 4 | public function __construct(Application $application) |
|
| 29 | |||
| 30 | /** |
||
| 31 | * Set the Application |
||
| 32 | * |
||
| 33 | * @param Application $application |
||
| 34 | * @return $this |
||
| 35 | */ |
||
| 36 | public function setApplication(Application $application) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Get the Symfony console Application |
||
| 44 | * |
||
| 45 | * @return Application |
||
| 46 | */ |
||
| 47 | 4 | public function getApplication() |
|
| 51 | } |
||
| 52 |