| 1 | <?php |
||
| 14 | class PrePush extends Application |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var AppKernel |
||
| 18 | */ |
||
| 19 | private $container; |
||
| 20 | /** |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | private $remote; |
||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | private $url; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * PrePush constructor. |
||
| 31 | * |
||
| 32 | * @param string $remote |
||
| 33 | * @param string $url |
||
| 34 | */ |
||
| 35 | public function __construct($remote, $url) |
||
| 42 | |||
| 43 | public function doRun(InputInterface $input, OutputInterface $output) |
||
| 49 | } |
||
| 50 |