Completed
Pull Request — master (#5)
by Tim
02:21
created
src/Services/AttributeBunchProcessor.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
     /**
309 309
      * Return's the attribute label repository instance.
310 310
      *
311
-     * @return \TechDivision\Import\Attribute\Repositories\AttributeRepository The attribute label repository instance
311
+     * @return AttributeLabelRepository The attribute label repository instance
312 312
      */
313 313
     public function getAttributeLabelRepository()
314 314
     {
@@ -462,7 +462,7 @@  discard block
 block discarded – undo
462 462
     /**
463 463
      * Return's the attribute label action instance.
464 464
      *
465
-     * @return \TechDivision\Import\Attribute\Actions\AttributeAction The attribute label action instance
465
+     * @return AttributeLabelAction The attribute label action instance
466 466
      */
467 467
     public function getAttributeLabelAction()
468 468
     {
Please login to merge, or discard this patch.
src/Utils/SqlStatements.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -457,7 +457,7 @@
 block discarded – undo
457 457
      *
458 458
      * @var string
459 459
      */
460
-    const DELETE_ATTRIBUTE_OPTION_SWATCH= 'DELETE FROM eav_attribute_option_swatch WHERE swatch_id = :swatch_id';
460
+    const DELETE_ATTRIBUTE_OPTION_SWATCH = 'DELETE FROM eav_attribute_option_swatch WHERE swatch_id = :swatch_id';
461 461
 
462 462
     /**
463 463
      * The SQL statement to remove a existing EAV catalog attribute.
Please login to merge, or discard this patch.
src/Repositories/AttributeOptionValueRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
         $utilityClassName = $this->getUtilityClassName();
55 55
 
56 56
         // initialize the prepared statements
57
-        $this->attributeOptionValueByAttributeCodeAndStoreIdAndValueStmt= $this->getConnection()->prepare($utilityClassName::ATTRIBUTE_OPTION_VALUE_BY_ATTRIBUTE_CODE_AND_STORE_ID_AND_VALUE);
57
+        $this->attributeOptionValueByAttributeCodeAndStoreIdAndValueStmt = $this->getConnection()->prepare($utilityClassName::ATTRIBUTE_OPTION_VALUE_BY_ATTRIBUTE_CODE_AND_STORE_ID_AND_VALUE);
58 58
     }
59 59
 
60 60
     /**
Please login to merge, or discard this patch.
src/Repositories/AttributeLabelRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
         $utilityClassName = $this->getUtilityClassName();
55 55
 
56 56
         // initialize the prepared statements
57
-        $this->attributeLabelByAttributeCodeAndStoreIdStmt= $this->getConnection()->prepare($utilityClassName::ATTRIBUTE_LABEL_BY_ATTRIBUTE_CODE_AND_STORE_ID);
57
+        $this->attributeLabelByAttributeCodeAndStoreIdStmt = $this->getConnection()->prepare($utilityClassName::ATTRIBUTE_LABEL_BY_ATTRIBUTE_CODE_AND_STORE_ID);
58 58
     }
59 59
 
60 60
     /**
Please login to merge, or discard this patch.