Completed
Pull Request — master (#6)
by Tim
06:47
created
src/Services/ProductLinkProcessorFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
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/Configuration/Operation.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -21,9 +21,6 @@
 block discarded – undo
21 21
 namespace TechDivision\Import\Cli\Configuration;
22 22
 
23 23
 use JMS\Serializer\Annotation\Type;
24
-use JMS\Serializer\Annotation\SerializedName;
25
-use TechDivision\Import\Configuration\SubjectInterface;
26
-use TechDivision\Import\ConfigurationInterface;
27 24
 use TechDivision\Import\Configuration\OperationInterface;
28 25
 
29 26
 /**
Please login to merge, or discard this patch.