Completed
Pull Request — master (#172)
by Łukasz
02:52
created
src/Factory/ProductViewFactory.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -82,6 +82,9 @@
 block discarded – undo
82 82
         return $productView;
83 83
     }
84 84
 
85
+    /**
86
+     * @param string $locale
87
+     */
85 88
     private function getTaxonWithAncestors(TaxonInterface $taxon, $locale): TaxonView
86 89
     {
87 90
         $currentTaxonView = $this->taxonViewFactory->create($taxon, $locale);
Please login to merge, or discard this patch.
src/Factory/TaxonDetailsViewFactory.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -45,6 +45,9 @@
 block discarded – undo
45 45
         return $currentTaxonView;
46 46
     }
47 47
 
48
+    /**
49
+     * @param string $locale
50
+     */
48 51
     private function buildTaxonView(TaxonInterface $taxon, $locale): TaxonView
49 52
     {
50 53
         $taxonView = $this->taxonViewFactory->create($taxon, $locale);
Please login to merge, or discard this patch.