Completed
Push — master ( ba51b0...de9f3b )
by Tim
11s
created
src/Subjects/AbstractCategorySubject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -305,7 +305,7 @@
 block discarded – undo
305 305
 
306 306
         // load the global data we've prepared initially
307 307
         $this->taxClasses = $status[RegistryKeys::GLOBAL_DATA][RegistryKeys::TAX_CLASSES];
308
-        $this->storeWebsites =  $status[RegistryKeys::GLOBAL_DATA][RegistryKeys::STORE_WEBSITES];
308
+        $this->storeWebsites = $status[RegistryKeys::GLOBAL_DATA][RegistryKeys::STORE_WEBSITES];
309 309
 
310 310
         // load the available categories
311 311
         $this->categories = $this->getCategoryProcessor()->getCategoriesWithResolvedPath();
Please login to merge, or discard this patch.
src/Observers/UrlRewriteObserver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -203,7 +203,7 @@
 block discarded – undo
203 203
     /**
204 204
      * Return's the PK to create the product => attribute relation.
205 205
      *
206
-     * @return integer The PK to create the relation with
206
+     * @return string The PK to create the relation with
207 207
      */
208 208
     protected function getPrimaryKey()
209 209
     {
Please login to merge, or discard this patch.
src/Plugins/ChildrenCountPlugin.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
      * Return's the configured processor instance.
144 144
      *
145
-     * @return object The processor instance
145
+     * @return CategoryProcessorInterface The processor instance
146 146
      * @throws \Exception Is thrown, if no processor factory has been configured
147 147
      */
148 148
     protected function getProcessor()
Please login to merge, or discard this patch.
src/Services/CategoryBunchProcessor.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
      * @param \TechDivision\Import\Category\Repositories\CategoryIntRepository            $categoryIntRepository             The category integer repository to use
187 187
      * @param \TechDivision\Import\Category\Repositories\CategoryTextRepository           $categoryTextRepository            The category text repository to use
188 188
      * @param \TechDivision\Import\Category\Repositories\CategoryVarcharRepository        $categoryVarcharRepository         The category varchar repository to use
189
-     * @param \TechDivision\Import\Product\Repositories\EavAttributeOptionValueRepository $eavAttributeOptionValueRepository The EAV attribute option value repository to use
189
+     * @param EavAttributeOptionValueRepository $eavAttributeOptionValueRepository The EAV attribute option value repository to use
190 190
      * @param \TechDivision\Import\Repositories\EavAttributeRepository                    $eavAttributeRepository            The EAV attribute repository to use
191 191
      * @param \TechDivision\Import\Repositories\UrlRewriteRepository                      $urlRewriteRepository              The URL rewrite repository to use
192 192
      * @param \TechDivision\Import\Category\Actions\CategoryDatetimeAction                $categoryDatetimeAction            The category datetime action to use
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
      * @param \TechDivision\Import\Category\Actions\CategoryAction                        $categoryAction                    The category action to use
196 196
      * @param \TechDivision\Import\Category\Actions\CategoryTextAction                    $categoryTextAction                The category text action to use
197 197
      * @param \TechDivision\Import\Category\Actions\CategoryVarcharAction                 $categoryVarcharAction             The category varchar action to use
198
-     * @param \TechDivision\Import\Product\Actions\UrlRewriteAction                       $urlRewriteAction                  The URL rewrite action to use
198
+     * @param UrlRewriteAction                       $urlRewriteAction                  The URL rewrite action to use
199 199
      * @param \TechDivision\Import\Assembler\CategoryAssembler                            $categoryAssembler                 The category assembler to use
200 200
      */
201 201
     public function __construct(
@@ -307,7 +307,7 @@  discard block
 block discarded – undo
307 307
     /**
308 308
      * Set's the repository to access EAV attribute option values.
309 309
      *
310
-     * @param \TechDivision\Import\Product\Repositories\EavAttributeOptionValueRepository $eavAttributeOptionValueRepository The repository to access EAV attribute option values
310
+     * @param EavAttributeOptionValueRepository $eavAttributeOptionValueRepository The repository to access EAV attribute option values
311 311
      *
312 312
      * @return void
313 313
      */
@@ -483,7 +483,7 @@  discard block
 block discarded – undo
483 483
     /**
484 484
      * Set's the action with the URL rewrite CRUD methods.
485 485
      *
486
-     * @param \TechDivision\Import\Product\Actions\UrlRewriteAction $urlRewriteAction The action with the URL rewrite CRUD methods
486
+     * @param UrlRewriteAction $urlRewriteAction The action with the URL rewrite CRUD methods
487 487
      *
488 488
      * @return void
489 489
      */
@@ -766,7 +766,7 @@  discard block
 block discarded – undo
766 766
      *
767 767
      * @param string $path The path of the category to count the children for
768 768
      *
769
-     * @return integer The children count of the category with the passed path
769
+     * @return string The children count of the category with the passed path
770 770
      */
771 771
     public function loadCategoryChildrenChildrenCount($path)
772 772
     {
Please login to merge, or discard this patch.
src/Repositories/CategoryRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
      *
112 112
      * @param string $path The path of the category to count the children for
113 113
      *
114
-     * @return integer The children count of the category with the passed path
114
+     * @return string The children count of the category with the passed path
115 115
      */
116 116
     public function countChildren($path)
117 117
     {
Please login to merge, or discard this patch.