Completed
Push — 2.0.0 ( c794ad...5e2943 )
by John
07:53
created
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/KPI.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -182,6 +182,7 @@
 block discarded – undo
182 182
      * not exist.
183 183
      *
184 184
      * @since 1.1
185
+     * @param string $stepName
185 186
      */
186 187
     public function logStep($stepName)
187 188
     {
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/Util/Search/SearchProviderFactory.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,11 +63,11 @@
 block discarded – undo
63 63
      * A static method that attempts to return a SearchProviderInterface instance
64 64
      * based on the name of the provider class supplied.
65 65
      *
66
-     * @param $providerName The class name of the provider class, should be fully-qualified.
66
+     * @param string $providerName The class name of the provider class, should be fully-qualified.
67 67
      *
68 68
      * @throws Alpha\Exception\IllegalArguementException;
69 69
      *
70
-     * @return Alpha\Util\Search\SearchProviderInterface
70
+     * @return SearchProviderInterface|null
71 71
      *
72 72
      * @since 1.2.3
73 73
      */
Please login to merge, or discard this patch.
Alpha/View/Renderer/RendererProviderFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
      *
69 69
      * @throws Alpha\Exception\IllegalArguementException
70 70
      *
71
-     * @return Alpha\View\Renderer\RendererProviderInterface
71
+     * @return RendererProviderInterface
72 72
      *
73 73
      * @since 1.2
74 74
      */
Please login to merge, or discard this patch.
Alpha/View/View.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1013,7 +1013,7 @@
 block discarded – undo
1013 1013
     /**
1014 1014
      * Get the current view renderer provider.
1015 1015
      *
1016
-     * @return Alpha\View\Renderer\RendererProviderInterface
1016
+     * @return RendererProviderInterface
1017 1017
      *
1018 1018
      * @since 2.0
1019 1019
      */
Please login to merge, or discard this patch.
Alpha/View/ViewState.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
      * Get the ViewState instance.  Loads from $_SESSION if its not already in memory, otherwise
110 110
      * a new instance will be returned with empty properties.
111 111
      *
112
-     * @return Alpha\View\ViewState
112
+     * @return string
113 113
      *
114 114
      * @since 1.0
115 115
      */
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.