Passed
Push — master ( ef93dc...4f7931 )
by
unknown
13:58
created
src/Http/Middleware/ThrottleRequests.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 	 * @param int                      $maxAttempts
34 34
 	 * @param int                      $decayMinutes
35 35
 	 *
36
-	 * @return mixed
36
+	 * @return Response
37 37
 	 */
38 38
 	public function handle($request, Closure $next, $maxAttempts = 60, $decayMinutes = 1)
39 39
 	{
@@ -68,8 +68,8 @@  discard block
 block discarded – undo
68 68
 	/**
69 69
 	 * Create a 'too many attempts' response.
70 70
 	 *
71
-	 * @param $key
72
-	 * @param $maxAttempts
71
+	 * @param string $key
72
+	 * @param integer $maxAttempts
73 73
 	 *
74 74
 	 * @return \Symfony\Component\HttpFoundation\Response
75 75
 	 */
Please login to merge, or discard this patch.
src/ServiceProvider.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use iBrand\Sms\Storage\CacheStorage;
15 15
 use Illuminate\Support\Facades\Route;
16 16
 use Overtrue\EasySms\EasySms;
17
-use iBrand\Sms\Http\Middleware\ThrottleRequests;
18 17
 
19 18
 /**
20 19
  * Class ServiceProvider.
Please login to merge, or discard this patch.
src/Sms.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 	}
50 50
 
51 51
 	/**
52
-	 * @return mixed
52
+	 * @return string
53 53
 	 */
54 54
 	public function getKey()
55 55
 	{
Please login to merge, or discard this patch.