| 1 | <?php declare(strict_types = 1); |
||
| 13 | abstract class InjectableAbstractConfigurator |
||
| 14 | { |
||
| 15 | /** @var string Method argument name */ |
||
| 16 | protected $argumentName; |
||
| 17 | |||
| 18 | /** @var string Method argument type */ |
||
| 19 | protected $argumentType; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * InjectArgument constructor. |
||
| 23 | * |
||
| 24 | * @param string $argumentName Injected argument name |
||
| 25 | * @param string $argumentType Injected argument type hint |
||
| 26 | */ |
||
| 27 | public function __construct(string $argumentName, string $argumentType) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Build full class name. |
||
| 35 | * |
||
| 36 | * @param string $className Full or short class name |
||
| 37 | * @param string $namespace Name space |
||
| 38 | * |
||
| 39 | * @return string Full class name |
||
| 40 | */ |
||
| 41 | protected function buildFullClassName($className, $namespace) |
||
| 50 | } |
||
| 51 |