@@ -54,7 +54,7 @@ |
||
54 | 54 | * |
55 | 55 | * @param \TechDivision\Import\Observers\AttributeCodeAndValueAwareObserverInterface|null $observer The observer |
56 | 56 | * |
57 | - * @return mixed The modified value |
|
57 | + * @return boolean|null The modified value |
|
58 | 58 | */ |
59 | 59 | public function handle(AttributeCodeAndValueAwareObserverInterface $observer = null) |
60 | 60 | { |
@@ -42,7 +42,7 @@ |
||
42 | 42 | * |
43 | 43 | * @param \TechDivision\Import\Observers\AttributeCodeAndValueAwareObserverInterface|null $observer The observer |
44 | 44 | * |
45 | - * @return mixed The modified value |
|
45 | + * @return null|string The modified value |
|
46 | 46 | */ |
47 | 47 | public function handle(AttributeCodeAndValueAwareObserverInterface $observer = null) |
48 | 48 | { |
@@ -90,7 +90,7 @@ |
||
90 | 90 | /** |
91 | 91 | * Set's the validations. |
92 | 92 | * |
93 | - * @param array $validations The available validations |
|
93 | + * @param \ArrayAccess $validations The available validations |
|
94 | 94 | */ |
95 | 95 | protected function setValidations(array $validations) |
96 | 96 | { |
@@ -22,7 +22,6 @@ |
||
22 | 22 | |
23 | 23 | use TechDivision\Import\Loaders\LoaderInterface; |
24 | 24 | use TechDivision\Import\Subjects\SubjectInterface; |
25 | -use TechDivision\Import\Services\RegistryProcessorInterface; |
|
26 | 25 | |
27 | 26 | /** |
28 | 27 | * Abstract callback implementation the validate the value for an specific attribute. |
@@ -45,7 +45,6 @@ |
||
45 | 45 | /** |
46 | 46 | * Initializes the plugin with the application instance. |
47 | 47 | * |
48 | - * @param \TechDivision\Import\Services\RegistryProcessorInterface $registryProcessor The registry processor instance |
|
49 | 48 | * @param \Symfony\Component\Console\Output\OutputInterface $output The output instance |
50 | 49 | */ |
51 | 50 | public function __construct(OutputInterface $output) |
@@ -55,7 +55,7 @@ |
||
55 | 55 | * Initializes the plugin with the application instance. |
56 | 56 | * |
57 | 57 | * @param \TechDivision\Import\Services\RegistryProcessorInterface $registryProcessor The registry processor instance |
58 | - * @param \TechDivision\Import\Listeners\Renderer\Validations\ValidationRendererInterface[] $renderer The array with the validation renderer instances |
|
58 | + * @param \ArrayAccess $renderer The array with the validation renderer instances |
|
59 | 59 | */ |
60 | 60 | public function __construct( RegistryProcessorInterface $registryProcessor, \ArrayAccess $renderer ) |
61 | 61 | { |
@@ -23,9 +23,7 @@ |
||
23 | 23 | use League\Event\EventInterface; |
24 | 24 | use League\Event\AbstractListener; |
25 | 25 | use TechDivision\Import\Utils\RegistryKeys; |
26 | -use TechDivision\Import\ApplicationInterface; |
|
27 | 26 | use TechDivision\Import\Services\RegistryProcessorInterface; |
28 | -use TechDivision\Import\Subjects\SubjectInterface; |
|
29 | 27 | use TechDivision\Import\Plugins\PluginInterface; |
30 | 28 | |
31 | 29 | /** |
@@ -20,7 +20,6 @@ |
||
20 | 20 | |
21 | 21 | namespace TechDivision\Import\Observers; |
22 | 22 | |
23 | -use TechDivision\Import\Utils\RegistryKeys; |
|
24 | 23 | use TechDivision\Import\Subjects\SubjectInterface; |
25 | 24 | use TechDivision\Import\Services\RegistryProcessorInterface; |
26 | 25 |