| 1 | <?php |
||
| 5 | final class ControllerWithParameter |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | private $kernelRootDir; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param string $kernelRootDir |
||
| 14 | */ |
||
| 15 | public function __construct(string $kernelRootDir) |
||
| 19 | |||
| 20 | public function someAction() |
||
| 23 | |||
| 24 | public function getKernelRootDir() : string |
||
| 28 | } |
||
| 29 |