Completed
Pull Request — master (#23)
by Shestakov
06:47
created
Source/Ice/Action/Security/LoginPassword/Login/Submit.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\Action;
4 4
 
5
-use Ice\Core\Debuger;
6 5
 use Ice\Core\Logger;
7 6
 use Ice\Core\Model;
8 7
 use Ice\Core\Model\Security_Account;
Please login to merge, or discard this patch.
Source/Ice/Action/Security/LoginPassword/RegisterConfirm/Submit.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\Action;
4 4
 
5
-use Ice\Core\Debuger;
6 5
 use Ice\Core\Logger;
7 6
 use Ice\Core\Widget_Security;
8 7
 use Ice\Helper\Date;
Please login to merge, or discard this patch.
Source/Ice/Action/Security/LoginPassword/RestorePasswordConfirm/Submit.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\Action;
4 4
 
5
-use Ice\Core\Debuger;
6 5
 use Ice\Core\Logger;
7 6
 use Ice\Core\Model;
8 7
 use Ice\Core\Model\Security_Account;
Please login to merge, or discard this patch.
Source/Ice/Action/Widget/Form/File/Upload.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -74,6 +74,9 @@
 block discarded – undo
74 74
         exit;
75 75
     }
76 76
 
77
+    /**
78
+     * @param string $name
79
+     */
77 80
     private function fetchFiles($files, &$data, $name, $input)
78 81
     {
79 82
         if (isset($files['tmp_name'])) {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use FileAPI;
6 6
 use Ice\Core\Action;
7
-use Ice\Core\Debuger;
8 7
 use Ice\Core\Module;
9 8
 use Ice\DataProvider\Request;
10 9
 use Ice\Helper\File;
Please login to merge, or discard this patch.
Source/Ice/App.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use Ice\Action\Upgrade;
9 9
 use Ice\Core\Action;
10 10
 use Ice\Core\Action_Context;
11
-use Ice\Core\Debuger;
12 11
 use Ice\Core\Logger;
13 12
 use Ice\Core\Module;
14 13
 use Ice\Core\Profiler;
Please login to merge, or discard this patch.
Source/Ice/Core.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
      * Return class by base class
49 49
      *
50 50
      * @param  string|null $className
51
-     * @return Core
51
+     * @return string
52 52
      *
53 53
      * @author dp <[email protected]>
54 54
      *
Please login to merge, or discard this patch.
Source/Ice/Core/Action.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -395,7 +395,7 @@
 block discarded – undo
395 395
     }
396 396
 
397 397
     /**
398
-     * @return null
398
+     * @return integer|null
399 399
      */
400 400
     public function getTtl()
401 401
     {
Please login to merge, or discard this patch.
Source/Ice/Core/Action/Context.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      * Initialize added action (push to full action call stack)
57 57
      *
58 58
      * @param  string $actionClass
59
-     * @param  $hash
59
+     * @param  integer $hash
60 60
      * @return Action_Context
61 61
      * @throws Exception
62 62
      *
Please login to merge, or discard this patch.
Source/Ice/Core/Config.php 2 patches
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      * Get config object by type or key
66 66
      *
67 67
      * @param  mixed $class
68
-     * @param  null $postfix
68
+     * @param  null|string $postfix
69 69
      * @param  bool $isRequired
70 70
      * @param  integer $ttl
71 71
      * @return Config
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
     /**
189 189
      * Return default config for class
190 190
      *
191
-     * @param  $key
191
+     * @param  string $key
192 192
      * @return Config
193 193
      *
194 194
      * @author dp <[email protected]>
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
     /**
205 205
      * Return default key
206 206
      *
207
-     * @return Core
207
+     * @return string
208 208
      *
209 209
      * @author dp <[email protected]>
210 210
      *
@@ -313,7 +313,7 @@  discard block
 block discarded – undo
313 313
     /**
314 314
      * Save config
315 315
      *
316
-     * @param null $path
316
+     * @param string $path
317 317
      * @return Config
318 318
      * @author dp <[email protected]>
319 319
      *
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
     }
333 333
 
334 334
     /**
335
-     * @param $key
335
+     * @param string $key
336 336
      * @return Config
337 337
      */
338 338
     public function getConfig($key)
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 use Ice\Core;
13 13
 use Ice\DataProvider\Repository;
14 14
 use Ice\Exception\Config_Error;
15
-use Ice\Exception\Config_Param;
16 15
 use Ice\Exception\Config_Param_NotFound;
17 16
 use Ice\Exception\FileNotFound;
18 17
 use Ice\Helper\Config as Helper_Config;
Please login to merge, or discard this patch.