Completed
Push — master ( afc941...8ca3ba )
by
unknown
03:02
created
app/Http/Controllers/Auth/AuthController.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -18,7 +18,6 @@  discard block
 block discarded – undo
18 18
 	 * Create a new authentication controller instance.
19 19
 	 *
20 20
 	 * @param  \Illuminate\Contracts\Auth\Guard  $auth
21
-	 * @param  \Illuminate\Contracts\Auth\Registrar  $registrar
22 21
 	 * @return void
23 22
 	 */
24 23
 	public function __construct(Guard $auth)
@@ -31,7 +30,7 @@  discard block
 block discarded – undo
31 30
 	/**
32 31
 	 * Show the application login form.
33 32
 	 *
34
-	 * @return \Illuminate\Http\Response
33
+	 * @return \Illuminate\View\View
35 34
 	 */
36 35
 	public function login()
37 36
 	{
@@ -42,7 +41,7 @@  discard block
 block discarded – undo
42 41
 	 * Handle a login request to the application.
43 42
 	 *
44 43
 	 * @param  \Illuminate\Http\Request  $request
45
-	 * @return \Illuminate\Http\Response
44
+	 * @return \Illuminate\Http\RedirectResponse
46 45
 	 */
47 46
 	public function authenticate(Request $request)
48 47
 	{
@@ -67,7 +66,7 @@  discard block
 block discarded – undo
67 66
 	/**
68 67
 	 * Log the user out of the application.
69 68
 	 *
70
-	 * @return \Illuminate\Http\Response
69
+	 * @return \Illuminate\Http\RedirectResponse
71 70
 	 */
72 71
 	public function logout()
73 72
 	{
Please login to merge, or discard this patch.
app/Http/Controllers/WelcomeController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 	/**
27 27
 	 * Show the application welcome screen to the user.
28 28
 	 *
29
-	 * @return Response
29
+	 * @return \Illuminate\View\View
30 30
 	 */
31 31
 	public function index()
32 32
 	{
Please login to merge, or discard this patch.
app/Services/IcecastReader.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,9 @@
 block discarded – undo
25 25
         return $this->mounts;
26 26
     }
27 27
 
28
+    /**
29
+     * @param string $studio
30
+     */
28 31
     public function get($studio)
29 32
     {
30 33
         $results = new Collection;
Please login to merge, or discard this patch.
app/Services/Whitelist.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@  discard block
 block discarded – undo
11 11
 	/**
12 12
 	 * Create a new filter instance.
13 13
 	 *
14
-	 * @param  Guard  $auth
15 14
 	 * @return void
16 15
 	 */
17 16
 	public function __construct($fromIp, $toIp)
@@ -24,8 +23,7 @@  discard block
 block discarded – undo
24 23
 	 * Handle an incoming request.
25 24
 	 *
26 25
 	 * @param  \Illuminate\Http\Request  $request
27
-	 * @param  \Closure  $next
28
-	 * @return mixed
26
+	 * @return boolean
29 27
 	 */
30 28
 	public function inRange($request)
31 29
 	{
Please login to merge, or discard this patch.
app/User.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     public $timestamps = false;
35 35
 
36 36
 	/**
37
-     * @return mixed
37
+     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
38 38
      */
39 39
     public function role()
40 40
     {
Please login to merge, or discard this patch.