@@ -15,7 +15,6 @@ |
||
| 15 | 15 | use Addiks\SymfonyGenerics\Controllers\ControllerHelperInterface; |
| 16 | 16 | use Addiks\SymfonyGenerics\Services\ArgumentCompilerInterface; |
| 17 | 17 | use Webmozart\Assert\Assert; |
| 18 | -use InvalidArgumentException; |
|
| 19 | 18 | use ReflectionObject; |
| 20 | 19 | use ReflectionMethod; |
| 21 | 20 | use Symfony\Component\HttpFoundation\Request; |
@@ -22,8 +22,8 @@ |
||
| 22 | 22 | public function understandsArgumentString(string $argumentConfiguration): bool; |
| 23 | 23 | |
| 24 | 24 | /** |
| 25 | - * @param array|string $argument |
|
| 26 | 25 | * |
| 26 | + * @param string $argumentConfiguration |
|
| 27 | 27 | * @return mixed |
| 28 | 28 | */ |
| 29 | 29 | public function buildArgument($argumentConfiguration, array $additionalData = array()); |
@@ -12,8 +12,6 @@ |
||
| 12 | 12 | |
| 13 | 13 | namespace Addiks\SymfonyGenerics\Services; |
| 14 | 14 | |
| 15 | -use ReflectionMethod; |
|
| 16 | -use Symfony\Component\HttpFoundation\Request; |
|
| 17 | 15 | use ReflectionFunctionAbstract; |
| 18 | 16 | |
| 19 | 17 | interface ArgumentCompilerInterface |