Completed
Push — master ( bf86a6...08a783 )
by Kirill
08:34 queued 06:06
created
src/YmlCatalog.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      * @param string $currencyClass class name
54 54
      * @param string $categoryClass class name
55 55
      * @param string $localDeliveryCostClass class name
56
-     * @param array $offerClasses
56
+     * @param string[] $offerClasses
57 57
      * @param null|string $date
58 58
      */
59 59
     public function __construct(
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
     }
182 182
 
183 183
     /**
184
-     * @param $modelClass
184
+     * @param string $modelClass
185 185
      * @return Category|Currency|SimpleOffer
186 186
      * @throws Exception
187 187
      */
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace pastuhov\ymlcatalog;
3 3
 
4
+use Yii;
5
+use pastuhov\FileStream\BaseFileStream;
4 6
 use pastuhov\ymlcatalog\models\BaseModel;
5 7
 use pastuhov\ymlcatalog\models\Category;
6 8
 use pastuhov\ymlcatalog\models\Currency;
7 9
 use pastuhov\ymlcatalog\models\LocalDeliveryCost;
8 10
 use pastuhov\ymlcatalog\models\Shop;
9 11
 use pastuhov\ymlcatalog\models\SimpleOffer;
10
-use Yii;
11
-use pastuhov\FileStream\BaseFileStream;
12 12
 use yii\base\Exception;
13 13
 
14 14
 /**
Please login to merge, or discard this patch.