@@ -59,9 +59,9 @@ discard block |
||
59 | 59 | { |
60 | 60 | // optimize autoloader with custom path |
61 | 61 | $this->taskComposerInstall() |
62 | - ->preferDist() |
|
63 | - ->optimizeAutoloader() |
|
64 | - ->run(); |
|
62 | + ->preferDist() |
|
63 | + ->optimizeAutoloader() |
|
64 | + ->run(); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | /** |
@@ -73,9 +73,9 @@ discard block |
||
73 | 73 | { |
74 | 74 | // optimize autoloader with custom path |
75 | 75 | $this->taskComposerUpdate() |
76 | - ->preferDist() |
|
77 | - ->optimizeAutoloader() |
|
78 | - ->run(); |
|
76 | + ->preferDist() |
|
77 | + ->optimizeAutoloader() |
|
78 | + ->run(); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | /** |
@@ -96,10 +96,10 @@ discard block |
||
96 | 96 | public function prepare() |
97 | 97 | { |
98 | 98 | $this->taskFileSystemStack() |
99 | - ->mkdir($this->properties['dist.dir']) |
|
100 | - ->mkdir($this->properties['target.dir']) |
|
101 | - ->mkdir(sprintf('%s/reports', $this->properties['target.dir'])) |
|
102 | - ->run(); |
|
99 | + ->mkdir($this->properties['dist.dir']) |
|
100 | + ->mkdir($this->properties['target.dir']) |
|
101 | + ->mkdir(sprintf('%s/reports', $this->properties['target.dir'])) |
|
102 | + ->run(); |
|
103 | 103 | } |
104 | 104 | |
105 | 105 | /** |
@@ -169,8 +169,8 @@ discard block |
||
169 | 169 | |
170 | 170 | // run PHPUnit |
171 | 171 | $this->taskPHPUnit(sprintf('%s/bin/phpunit', $this->properties['vendor.dir'])) |
172 | - ->configFile('phpunit.xml') |
|
173 | - ->run(); |
|
172 | + ->configFile('phpunit.xml') |
|
173 | + ->run(); |
|
174 | 174 | } |
175 | 175 | |
176 | 176 | /** |
@@ -116,7 +116,7 @@ |
||
116 | 116 | $attribute = $this->loadAttributeByAttributeCode($attributeCode); |
117 | 117 | |
118 | 118 | // temporary persist the pre-loaded attribute code => ID mapping |
119 | - $this->preLoadedAttributeIds[$attributeCode]= $attribute[MemberNames::ATTRIBUTE_ID]; |
|
119 | + $this->preLoadedAttributeIds[$attributeCode] = $attribute[MemberNames::ATTRIBUTE_ID]; |
|
120 | 120 | } |
121 | 121 | |
122 | 122 | /** |
@@ -142,7 +142,7 @@ |
||
142 | 142 | * |
143 | 143 | * @param array $attributeOptionValue The attribute option value to persist |
144 | 144 | * |
145 | - * @return void |
|
145 | + * @return string |
|
146 | 146 | */ |
147 | 147 | protected function persistAttributeOptionValue(array $attributeOptionValue) |
148 | 148 | { |
@@ -457,7 +457,7 @@ |
||
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. |
@@ -54,7 +54,7 @@ |
||
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 | /** |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | * @param \TechDivision\Import\Attribute\Repositories\AttributeRepository $attributeRepository The attribute repository instance |
160 | 160 | * @param \TechDivision\Import\Attribute\Repositories\AttributeLabelRepository $attributeLabelRepository The attribute label repository instance |
161 | 161 | * @param \TechDivision\Import\Attribute\Repositories\AttributeOptionRepository $attributeOptionRepository The attribute repository instance |
162 | - * @param \TechDivision\Import\Product\Repositories\EavAttributeOptionValueRepository $eavAttributeOptionValueRepository The EAV attribute option value repository to use |
|
162 | + * @param EavAttributeOptionValueRepository $eavAttributeOptionValueRepository The EAV attribute option value repository to use |
|
163 | 163 | * @param \TechDivision\Import\Attribute\Repositories\AttributeOptionSwatchRepository $attributeOptionSwatchRepository The attribute repository swatch instance |
164 | 164 | * @param \TechDivision\Import\Attribute\Repositories\CatalogAttributeRepository $catalogAttributeRepository The catalog attribute repository instance |
165 | 165 | * @param \TechDivision\Import\Attribute\Repositories\EntityAttributeRepository $entityAttributeRepository The entity attribute repository instance |
@@ -308,7 +308,7 @@ discard block |
||
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 | { |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | /** |
341 | 341 | * Set's the repository to access EAV attribute option values. |
342 | 342 | * |
343 | - * @param \TechDivision\Import\Product\Repositories\EavAttributeOptionValueRepository $eavAttributeOptionValueRepository The repository to access EAV attribute option values |
|
343 | + * @param EavAttributeOptionValueRepository $eavAttributeOptionValueRepository The repository to access EAV attribute option values |
|
344 | 344 | * |
345 | 345 | * @return void |
346 | 346 | */ |
@@ -462,7 +462,7 @@ discard block |
||
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 | { |
@@ -189,7 +189,7 @@ |
||
189 | 189 | * |
190 | 190 | * @param array $attribute The attribute to persist |
191 | 191 | * |
192 | - * @return void |
|
192 | + * @return string |
|
193 | 193 | */ |
194 | 194 | protected function persistAttribute(array $attribute) |
195 | 195 | { |
@@ -164,7 +164,7 @@ |
||
164 | 164 | * |
165 | 165 | * @param array $attributeOption The attribute option to persist |
166 | 166 | * |
167 | - * @return void |
|
167 | + * @return string |
|
168 | 168 | */ |
169 | 169 | protected function persistAttributeOption(array $attributeOption) |
170 | 170 | { |