Completed
Pull Request — master (#23)
by Kenji
04:01
created
src/Response/Html.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 	/**
30 30
 	 * Send the content to the output
31 31
 	 *
32
-	 * @return  Response
32
+	 * @return  Html
33 33
 	 *
34 34
 	 * @since  2.0.0
35 35
 	 */
Please login to merge, or discard this patch.
src/Response/Json.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 	/**
32 32
 	 * Send the content to the output
33 33
 	 *
34
-	 * @return  Response
34
+	 * @return  Json
35 35
 	 *
36 36
 	 * @since  2.0.0
37 37
 	 */
Please login to merge, or discard this patch.
src/Response/Jsonp.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 	/**
32 32
 	 * Send the content to the output
33 33
 	 *
34
-	 * @return  Response
34
+	 * @return  Jsonp
35 35
 	 *
36 36
 	 * @since  2.0.0
37 37
 	 */
Please login to merge, or discard this patch.
src/Response/Redirect.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
 	/**
58 58
 	 * Send the content to the output
59 59
 	 *
60
-	 * @return  Response
60
+	 * @return  Redirect
61 61
 	 *
62 62
 	 * @since  2.0.0
63 63
 	 */
Please login to merge, or discard this patch.
src/Response/Xml.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 	/**
32 32
 	 * Send the content to the output
33 33
 	 *
34
-	 * @return  Response
34
+	 * @return  Xml
35 35
 	 *
36 36
 	 * @since  2.0.0
37 37
 	 */
Please login to merge, or discard this patch.
src/Router.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,6 @@
 block discarded – undo
12 12
 
13 13
 use Closure;
14 14
 use Fuel\Routing\Match;
15
-use Fuel\Foundation\Exception\NotFound;
16
-use Fuel\Foundation\Exception\ServerError;
17 15
 
18 16
 /**
19 17
  * Fuel Router class
Please login to merge, or discard this patch.
src/Stack.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,6 @@
 block discarded – undo
41 41
 	/**
42 42
 	 * Create a new instance and pushes it on the stack.
43 43
 	 *
44
-	 * @param array $arguments
45 44
 	 *
46 45
 	 * @return object
47 46
 	 */
Please login to merge, or discard this patch.
src/Error.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -274,6 +274,7 @@
 block discarded – undo
274 274
 	/**
275 275
 	 * Load the correct file with translations, based on the locale passed
276 276
 	 *
277
+	 * @param string $locale
277 278
 	 * @return  mixed  array of message translations, or false if none are found
278 279
 	 *
279 280
 	 * @since  2.0.0
Please login to merge, or discard this patch.