Completed
Push — master ( ed2696...f61015 )
by
unknown
08:36
created
src/Observers/AttributeOptionValueObserver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Observers/AttributeObserver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -189,7 +189,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Observers/AttributeOptionObserver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Services/AttributeBunchProcessor.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
      * @param \TechDivision\Import\Attribute\Repositories\AttributeRepository             $attributeRepository               The attribute repository instance
161 161
      * @param \TechDivision\Import\Attribute\Repositories\AttributeLabelRepository        $attributeLabelRepository          The attribute label repository instance
162 162
      * @param \TechDivision\Import\Attribute\Repositories\AttributeOptionRepository       $attributeOptionRepository         The attribute repository instance
163
-     * @param \TechDivision\Import\Product\Repositories\EavAttributeOptionValueRepository $eavAttributeOptionValueRepository The EAV attribute option value repository to use
163
+     * @param EavAttributeOptionValueRepository $eavAttributeOptionValueRepository The EAV attribute option value repository to use
164 164
      * @param \TechDivision\Import\Attribute\Repositories\AttributeOptionSwatchRepository $attributeOptionSwatchRepository   The attribute repository swatch instance
165 165
      * @param \TechDivision\Import\Attribute\Repositories\CatalogAttributeRepository      $catalogAttributeRepository        The catalog attribute repository instance
166 166
      * @param \TechDivision\Import\Attribute\Repositories\EntityAttributeRepository       $entityAttributeRepository         The entity attribute repository instance
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
      * Commits a transaction, returning the database connection to autocommit mode until the next call to
247 247
      * ProductProcessor::beginTransaction() starts a new transaction.
248 248
      *
249
-     * @return boolean Returns TRUE on success or FALSE on failure
249
+     * @return boolean|null Returns TRUE on success or FALSE on failure
250 250
      * @link http://php.net/manual/en/pdo.commit.php
251 251
      */
252 252
     public function commit()
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
     /**
310 310
      * Return's the attribute label repository instance.
311 311
      *
312
-     * @return \TechDivision\Import\Attribute\Repositories\AttributeRepository The attribute label repository instance
312
+     * @return AttributeLabelRepository The attribute label repository instance
313 313
      */
314 314
     public function getAttributeLabelRepository()
315 315
     {
@@ -341,7 +341,7 @@  discard block
 block discarded – undo
341 341
     /**
342 342
      * Set's the repository to access EAV attribute option values.
343 343
      *
344
-     * @param \TechDivision\Import\Product\Repositories\EavAttributeOptionValueRepository $eavAttributeOptionValueRepository The repository to access EAV attribute option values
344
+     * @param EavAttributeOptionValueRepository $eavAttributeOptionValueRepository The repository to access EAV attribute option values
345 345
      *
346 346
      * @return void
347 347
      */
@@ -463,7 +463,7 @@  discard block
 block discarded – undo
463 463
     /**
464 464
      * Return's the attribute label action instance.
465 465
      *
466
-     * @return \TechDivision\Import\Attribute\Actions\AttributeAction The attribute label action instance
466
+     * @return AttributeLabelAction The attribute label action instance
467 467
      */
468 468
     public function getAttributeLabelAction()
469 469
     {
Please login to merge, or discard this patch.