Completed
Branch develop (8f72cf)
by John
07:52
created
Alpha/Controller/ListActiveRecordsController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      *
97 97
      * @param alpha\Util\Http\Request $request
98 98
      *
99
-     * @return alpha\Util\Http\Response
99
+     * @return Response
100 100
      *
101 101
      * @since 1.0
102 102
      */
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      *
121 121
      * @param alpha\Util\Http\Request $request
122 122
      *
123
-     * @return alpha\Util\Http\Response
123
+     * @return Response
124 124
      *
125 125
      * @since 1.0
126 126
      */
Please login to merge, or discard this patch.
Alpha/Model/Article.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -435,7 +435,7 @@
 block discarded – undo
435 435
     /**
436 436
      * Method for returning the calculated score for this article.
437 437
      *
438
-     * @return float
438
+     * @return string
439 439
      *
440 440
      * @since 1.0
441 441
      */
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use Alpha\Model\Type\Boolean;
9 9
 use Alpha\Model\Type\Relation;
10 10
 use Alpha\Util\Logging\Logger;
11
-use Alpha\Util\Config\Configprovider;
12 11
 use Alpha\Util\Http\Session\SessionProviderFactory;
13 12
 use Alpha\Exception\ValidationException;
14 13
 use Alpha\Exception\FileNotFoundException;
Please login to merge, or discard this patch.
Alpha/Util/Config/ConfigProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
     /**
116 116
      * Get config value.
117 117
      *
118
-     * @param $key string
118
+     * @param string $key string
119 119
      *
120 120
      * @return string
121 121
      *
Please login to merge, or discard this patch.
Alpha/Util/Graph/GraphNode.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
     /**
285 285
      * Get the node offset.
286 286
      *
287
-     * @return string
287
+     * @return integer
288 288
      *
289 289
      * @since 1.0
290 290
      */
@@ -460,7 +460,7 @@  discard block
 block discarded – undo
460 460
     /**
461 461
      * Calculates and returns the midpoint X coordinate of the children of this node.
462 462
      *
463
-     * @return int
463
+     * @return double
464 464
      *
465 465
      * @since 1.0
466 466
      */
Please login to merge, or discard this patch.
Alpha/Util/Http/Session/SessionProviderInterface.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,6 +50,7 @@  discard block
 block discarded – undo
50 50
      * Starts a new session, or resumes an existing session if there is already a session ID available.
51 51
      *
52 52
      * @since 2.0
53
+     * @return void
53 54
      */
54 55
     public function init();
55 56
 
@@ -57,13 +58,14 @@  discard block
 block discarded – undo
57 58
      * Destroys the current session.
58 59
      *
59 60
      * @since 2.0
61
+     * @return void
60 62
      */
61 63
     public function destroy();
62 64
 
63 65
     /**
64 66
      * Get the key value from the session.  Returns false if nothing is found.
65 67
      *
66
-     * @param $key
68
+     * @param string $key
67 69
      *
68 70
      * @since 2.0
69 71
      *
@@ -78,6 +80,7 @@  discard block
 block discarded – undo
78 80
      * @param mixed  $value
79 81
      *
80 82
      * @since 2.0
83
+     * @return void
81 84
      */
82 85
     public function set($key, $value);
83 86
 
@@ -85,9 +88,9 @@  discard block
 block discarded – undo
85 88
      * Deletes the value provided at that key in the session.
86 89
      *
87 90
      * @param string $key
88
-     * @param mixed  $value
89 91
      *
90 92
      * @since 2.0
93
+     * @return void
91 94
      */
92 95
     public function delete($key);
93 96
 
Please login to merge, or discard this patch.
Alpha/Util/Image/ImageUtils.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
     /**
110 110
      * Saves the GD image resource to the file path indicated.
111 111
      *
112
-     * @param image  $imageResource The GD image resource to save
112
+     * @param resource  $imageResource The GD image resource to save
113 113
      * @param string $type          The image type (jpg, png, or gif)
114 114
      * @param string $destination   The desination file path of the image file to create
115 115
      *
Please login to merge, or discard this patch.
Alpha/Util/Logging/LogProviderFile.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
     /**
133 133
      * Returns the size in megabytes of the log file on disc.
134 134
      *
135
-     * @return float
135
+     * @return integer
136 136
      *
137 137
      * @since 1.0
138 138
      */
Please login to merge, or discard this patch.
Alpha/View/Widget/Image.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@
 block discarded – undo
153 153
     /**
154 154
      * The constructor.
155 155
      *
156
-     * @param $source
156
+     * @param string $source
157 157
      * @param $width
158 158
      * @param $height
159 159
      * @param $sourceType
Please login to merge, or discard this patch.
public/index.php 1 patch
Unused Use Statements   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -2,15 +2,15 @@
 block discarded – undo
2 2
 
3 3
 require_once __DIR__.'/../vendor/autoload.php';
4 4
 
5
-use Alpha\Controller\Front\FrontController;
6
-use Alpha\Util\Config\ConfigProvider;
7
-use Alpha\Util\Http\Filter\ClientBlacklistFilter;
8
-use Alpha\Util\Http\Filter\IPBlacklistFilter;
9
-use Alpha\Util\Http\Filter\ClientTempBlacklistFilter;
10
-use Alpha\Util\Http\Request;
11
-use Alpha\Util\Http\Response;
12
-use Alpha\Exception\ResourceNotFoundException;
13
-use Alpha\Exception\ResourceNotAllowedException;
5
+use Alpha\Controller\Front\FrontController;
6
+use Alpha\Util\Config\ConfigProvider;
7
+use Alpha\Util\Http\Filter\ClientBlacklistFilter;
8
+use Alpha\Util\Http\Filter\IPBlacklistFilter;
9
+use Alpha\Util\Http\Filter\ClientTempBlacklistFilter;
10
+use Alpha\Util\Http\Request;
11
+use Alpha\Util\Http\Response;
12
+use Alpha\Exception\ResourceNotFoundException;
13
+use Alpha\Exception\ResourceNotAllowedException;
14 14
 use Alpha\View\View;
15 15
 
16 16
 try {
Please login to merge, or discard this patch.