Completed
Pull Request — master (#23)
by Shestakov
06:47
created
Source/Ice/Helper/Logger.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
      * @param \Exception $exception
125 125
      * @param $output
126 126
      *
127
-     * @param $class
127
+     * @param string $class
128 128
      * @throws \Exception
129 129
      * @author dp <[email protected]>
130 130
      *
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 use Ice\Core\Logger as Core_Logger;
14 14
 use Ice\Core\Module;
15 15
 use Ice\Core\Render;
16
-use Ice\Core\Request as Core_Request;
17 16
 use Ice\Core\Request;
18 17
 use Ice\Render\Php as Render_Php;
19 18
 use Ice\Core\Console as Core_Console;
Please login to merge, or discard this patch.
Source/Ice/Helper/Serializer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
     /**
91 91
      * Unserialize with known serializer
92 92
      *
93
-     * @param  mixed $data
93
+     * @param  string $data
94 94
      * @param  string $serializer
95 95
      * @throws Exception
96 96
      * @return string
Please login to merge, or discard this patch.
Source/Ice/Helper/String.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -33,9 +33,9 @@  discard block
 block discarded – undo
33 33
     /**
34 34
      * Trim with some chars
35 35
      *
36
-     * @param  $string
37
-     * @param  null $chars
38
-     * @param  string $type
36
+     * @param  string $string
37
+     * @param  string[] $chars
38
+     * @param  string string
39 39
      * @return string
40 40
      * @throws Exception
41 41
      *
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
      * Return random string
126 126
      *
127 127
      * @param  int $length
128
-     * @param array $blocks
128
+     * @param integer $blocks
129 129
      * @return string
130 130
      * @author dp <[email protected]>
131 131
      *
Please login to merge, or discard this patch.
Source/Ice/Helper/Validator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php namespace Ice\Helper;
2 2
 
3
-use Ice\Core\Debuger;
4 3
 use Ice\Core\Exception;
5 4
 use Ice\Core\Logger as Core_Logger;
6 5
 use Ice\Core\Validator as Core_Validator;
Please login to merge, or discard this patch.
Source/Ice/Helper/Vcs.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      * Init local repository
33 33
      *
34 34
      * @param $vcs
35
-     * @param $dir
35
+     * @param string $dir
36 36
      *
37 37
      * @author dp <[email protected]>
38 38
      *
Please login to merge, or discard this patch.
Source/Ice/Render/External/PHPExcel.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Ice\Render;
4 4
 
5
-use Ice\Core\Debuger;
6 5
 use Ice\Core\Environment;
7 6
 use Ice\Core\Loader;
8 7
 use Ice\Core\Logger;
Please login to merge, or discard this patch.
Source/Ice/Render/Php.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,6 @@
 block discarded – undo
9 9
 
10 10
 namespace Ice\Render;
11 11
 
12
-use Ice\Core\Action;
13
-use Ice\Core\Debuger;
14 12
 use Ice\Core\Environment;
15 13
 use Ice\Core\Loader;
16 14
 use Ice\Core\Logger;
Please login to merge, or discard this patch.
Source/Ice/Render/Replace.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      * @param  array $data
57 57
      * @param null $layout
58 58
      * @param string $templateType
59
-     * @return mixed
59
+     * @return string
60 60
      * @throws \Exception
61 61
      * @author dp <[email protected]>
62 62
      *
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 
10 10
 namespace Ice\Render;
11 11
 
12
-use Ice\Core\Action;
13 12
 use Ice\Core\Loader;
14 13
 use Ice\Core\Module;
15 14
 use Ice\Core\Render;
Please login to merge, or discard this patch.
Source/Ice/Render/Smarty.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,9 +91,9 @@
 block discarded – undo
91 91
      *
92 92
      * @param string $template
93 93
      * @param  array $data
94
-     * @param null $layout
94
+     * @param string|null $layout
95 95
      * @param string $templateType
96
-     * @return mixed
96
+     * @return null|string
97 97
      * @throws \Exception
98 98
      * @author dp <[email protected]>
99 99
      *
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 Ice\Render;
11 11
 
12
-use Ice\Core\Action;
13 12
 use Ice\Core\Config;
14 13
 use Ice\Core\Environment;
15 14
 use Ice\Core\Logger;
16 15
 use Ice\Core\Module;
17 16
 use Ice\Core\Render;
18
-use Ice\Core\ViiewOld;
19 17
 use Ice\Helper\Emmet;
20 18
 
21 19
 /**
Please login to merge, or discard this patch.