Completed
Pull Request — master (#7)
by
unknown
11:39
created
src/factory/WriterFactory.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -21,6 +21,7 @@
 block discarded – undo
21 21
 {
22 22
     /**
23 23
      * @inheritdoc
24
+     * @param string $writerType
24 25
      */
25 26
     public static function create($writerType)
26 27
     {
Please login to merge, or discard this patch.
src/mappers/ColumnValueMapper.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -75,6 +75,9 @@
 block discarded – undo
75 75
         return $row;
76 76
     }
77 77
 
78
+    /**
79
+     * @param DataColumn $column
80
+     */
78 81
     protected function getColumnValue($column, $model, $key, $index)
79 82
     {
80 83
         $value = $column->renderDataCell($model, $key, $index);
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -9,13 +9,11 @@
 block discarded – undo
9 9
 
10 10
 namespace dosamigos\exportable\mappers;
11 11
 
12
-use yii\base\Model;
13 12
 use yii\db\ActiveRecordInterface;
14 13
 use yii\grid\ActionColumn;
15 14
 use yii\grid\CheckboxColumn;
16 15
 use yii\grid\Column;
17 16
 use yii\grid\DataColumn;
18
-use yii\helpers\ArrayHelper;
19 17
 
20 18
 class ColumnValueMapper
21 19
 {
Please login to merge, or discard this patch.