Completed
Pull Request — master (#32)
by Tim
03:28
created
src/Services/RegistryProcessorFactory.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,9 +39,9 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Configuration.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Services/ImportProcessorFactory.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,9 +48,9 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Services/EeProductMediaProcessorFactory.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,9 +50,9 @@
 block discarded – undo
50 50
      * Factory method to create a new product processor instance.
51 51
      *
52 52
      * @param \PDO                                               $connection    The PDO connection to use
53
-     * @param TechDivision\Import\Configuration\SubjectInterface $configuration The subject configuration
53
+     * @param SubjectInterface $configuration The subject configuration
54 54
      *
55
-     * @return \TechDivision\Import\Product\Services\ProductProcessor The processor instance
55
+     * @return \TechDivision\Import\Product\Media\Services\ProductMediaProcessor The processor instance
56 56
      */
57 57
     public static function factory(\PDO $connection, SubjectInterface $configuration)
58 58
     {
Please login to merge, or discard this patch.
src/Simple.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -626,7 +626,7 @@
 block discarded – undo
626 626
     /**
627 627
      * Factory method to create new handler instances.
628 628
      *
629
-     * @param \TechDivision\Import\Configuration\Subject $subject The subject configuration
629
+     * @param \TechDivision\Import\Configuration\SubjectInterface $subject The subject configuration
630 630
      *
631 631
      * @return object The handler instance
632 632
      */
Please login to merge, or discard this patch.