Completed
Push — master ( 285fbd...4d0342 )
by Tim
10s
created
src/Services/CategoryBunchProcessor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -572,7 +572,7 @@
 block discarded – undo
572 572
      *
573 573
      * @param string $path The path of the category to count the children for
574 574
      *
575
-     * @return integer The children count of the category with the passed path
575
+     * @return string The children count of the category with the passed path
576 576
      */
577 577
     public function loadCategoryChildrenChildrenCount($path)
578 578
     {
Please login to merge, or discard this patch.
src/Observers/UrlKeyAndPathObserver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
         }
82 82
 
83 83
         // convert the elements of the URL path
84
-        array_walk($urlPath, function (&$value) {
84
+        array_walk($urlPath, function(&$value) {
85 85
             $value = $this->convertNameToUrlKey($value);
86 86
         });
87 87
 
Please login to merge, or discard this patch.
src/Subjects/AbstractCategorySubject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -301,7 +301,7 @@
 block discarded – undo
301 301
         $status = $this->getRegistryProcessor()->getAttribute($this->getSerial());
302 302
 
303 303
         // load the global data we've prepared initially
304
-        $this->storeWebsites =  $status[RegistryKeys::GLOBAL_DATA][RegistryKeys::STORE_WEBSITES];
304
+        $this->storeWebsites = $status[RegistryKeys::GLOBAL_DATA][RegistryKeys::STORE_WEBSITES];
305 305
         $this->stores = $status[RegistryKeys::GLOBAL_DATA][RegistryKeys::STORES];
306 306
         $this->taxClasses = $status[RegistryKeys::GLOBAL_DATA][RegistryKeys::TAX_CLASSES];
307 307
         $this->coreConfigData = $status[RegistryKeys::GLOBAL_DATA][RegistryKeys::CORE_CONFIG_DATA];
Please login to merge, or discard this patch.