@@ -58,7 +58,7 @@ |
||
| 58 | 58 | * Factory method to create a new product link processor instance. |
| 59 | 59 | * |
| 60 | 60 | * @param \PDO $connection The PDO connection to use |
| 61 | - * @param TechDivision\Import\ConfigurationInterface $configuration The subject configuration |
|
| 61 | + * @param SubjectInterface $configuration The subject configuration |
|
| 62 | 62 | * |
| 63 | 63 | * @return \TechDivision\Import\Product\Link\Services\ProducLinkProcessor The processor instance |
| 64 | 64 | */ |
@@ -39,9 +39,9 @@ |
||
| 39 | 39 | * Factory method to create a new import processor instance. |
| 40 | 40 | * |
| 41 | 41 | * @param \PDO $connection The PDO connection to use |
| 42 | - * @param TechDivision\Import\ConfigurationInterface $configuration The subject configuration |
|
| 42 | + * @param ConfigurationInterface $configuration The subject configuration |
|
| 43 | 43 | * |
| 44 | - * @return object The processor instance |
|
| 44 | + * @return RegistryProcessor The processor instance |
|
| 45 | 45 | */ |
| 46 | 46 | public static function factory(\PDO $connection, ConfigurationInterface $configuration) |
| 47 | 47 | { |
@@ -247,7 +247,7 @@ discard block |
||
| 247 | 247 | * |
| 248 | 248 | * @param string $operationName The operation name that has to be used |
| 249 | 249 | * |
| 250 | - * @return void |
|
| 250 | + * @return string |
|
| 251 | 251 | */ |
| 252 | 252 | public function setOperationName($operationName) |
| 253 | 253 | { |
@@ -291,7 +291,7 @@ discard block |
||
| 291 | 291 | * |
| 292 | 292 | * @param string $utilityClassName The utility class name |
| 293 | 293 | * |
| 294 | - * @return void |
|
| 294 | + * @return string |
|
| 295 | 295 | */ |
| 296 | 296 | public function setUtilityClassName($utilityClassName) |
| 297 | 297 | { |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | * Factory method to create a new product variant processor instance. |
| 59 | 59 | * |
| 60 | 60 | * @param \PDO $connection The PDO connection to use |
| 61 | - * @param TechDivision\Import\Configuration\SubjectInterface $configuration The subject configuration |
|
| 61 | + * @param SubjectInterface $configuration The subject configuration |
|
| 62 | 62 | * |
| 63 | 63 | * @return \TechDivision\Import\Product\Variant\Services\ProductVariantProcessor The processor instance |
| 64 | 64 | */ |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | * Factory method to create a new product variant processor instance. |
| 59 | 59 | * |
| 60 | 60 | * @param \PDO $connection The PDO connection to use |
| 61 | - * @param TechDivision\Import\Configuration\SubjectInterface $configuration The subject configuration |
|
| 61 | + * @param SubjectInterface $configuration The subject configuration |
|
| 62 | 62 | * |
| 63 | 63 | * @return \TechDivision\Import\Product\Variant\Services\ProductVariantProcessor The processor instance |
| 64 | 64 | */ |
@@ -48,9 +48,9 @@ |
||
| 48 | 48 | * Factory method to create a new import processor instance. |
| 49 | 49 | * |
| 50 | 50 | * @param \PDO $connection The PDO connection to use |
| 51 | - * @param TechDivision\Import\ConfigurationInterface $configuration The subject configuration |
|
| 51 | + * @param ConfigurationInterface $configuration The subject configuration |
|
| 52 | 52 | * |
| 53 | - * @return object The processor instance |
|
| 53 | + * @return ImportProcessor The processor instance |
|
| 54 | 54 | */ |
| 55 | 55 | public static function factory(\PDO $connection, ConfigurationInterface $configuration) |
| 56 | 56 | { |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | * Factory method to create a new product variant processor instance. |
| 59 | 59 | * |
| 60 | 60 | * @param \PDO $connection The PDO connection to use |
| 61 | - * @param TechDivision\Import\Configuration\SubjectInterface $configuration The subject configuration |
|
| 61 | + * @param SubjectInterface $configuration The subject configuration |
|
| 62 | 62 | * |
| 63 | 63 | * @return \TechDivision\Import\Product\Variant\Services\ProductVariantProcessor The processor instance |
| 64 | 64 | */ |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | * Factory method to create a new product variant processor instance. |
| 59 | 59 | * |
| 60 | 60 | * @param \PDO $connection The PDO connection to use |
| 61 | - * @param TechDivision\Import\Configuration\SubjectInterface $configuration The subject configuration |
|
| 61 | + * @param SubjectInterface $configuration The subject configuration |
|
| 62 | 62 | * |
| 63 | 63 | * @return \TechDivision\Import\Product\Variant\Services\ProductVariantProcessor The processor instance |
| 64 | 64 | */ |
@@ -32,7 +32,6 @@ |
||
| 32 | 32 | use TechDivision\Import\Product\Bundle\Actions\Processors\ProductBundleOptionCreateProcessor; |
| 33 | 33 | use TechDivision\Import\Product\Bundle\Actions\Processors\ProductBundleOptionUpdateProcessor; |
| 34 | 34 | use TechDivision\Import\Product\Bundle\Actions\Processors\ProductBundleOptionValueCreateProcessor; |
| 35 | -use TechDivision\Import\Product\Bundle\Actions\Processors\ProductBundleOptionValueUpdateProcessor; |
|
| 36 | 35 | use TechDivision\Import\Product\Bundle\Actions\Processors\ProductBundleSelectionCreateProcessor; |
| 37 | 36 | use TechDivision\Import\Product\Bundle\Actions\Processors\ProductBundleSelectionUpdateProcessor; |
| 38 | 37 | use TechDivision\Import\Product\Bundle\Actions\Processors\ProductBundleSelectionPriceCreateProcessor; |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | * Factory method to create a new product variant processor instance. |
| 59 | 59 | * |
| 60 | 60 | * @param \PDO $connection The PDO connection to use |
| 61 | - * @param TechDivision\Import\Configuration\SubjectInterface $configuration The subject configuration |
|
| 61 | + * @param SubjectInterface $configuration The subject configuration |
|
| 62 | 62 | * |
| 63 | 63 | * @return \TechDivision\Import\Product\Variant\Services\ProductVariantProcessor The processor instance |
| 64 | 64 | */ |