| 1 | <?php |
||
| 7 | final class ControllerWithParameter |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | private $kernelRootDir; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param string $kernelRootDir |
||
| 16 | */ |
||
| 17 | public function __construct(string $kernelRootDir) |
||
| 21 | |||
| 22 | public function someAction() |
||
| 25 | |||
| 26 | public function getKernelRootDir() : string |
||
| 30 | } |
||
| 31 |