Passed
Push — master ( 0fe4f0...2f5d7b )
by Daniel
11:30
created
php_cs.dist.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@  discard block
 block discarded – undo
13 13
 return (new PhpCsFixer\Config())
14 14
     ->setRules([
15 15
         '@PSR12' => true,
16
-        'array_syntax' => ['syntax' => 'short'],
17
-        'ordered_imports' => ['sort_algorithm' => 'alpha'],
16
+        'array_syntax' => [ 'syntax' => 'short' ],
17
+        'ordered_imports' => [ 'sort_algorithm' => 'alpha' ],
18 18
         'no_unused_imports' => true,
19 19
         'not_operator_with_successor_space' => true,
20 20
         'trailing_comma_in_multiline' => true,
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
         'unary_operator_spaces' => true,
23 23
         'binary_operator_spaces' => true,
24 24
         'blank_line_before_statement' => [
25
-            'statements' => ['break', 'continue', 'declare', 'return', 'throw', 'try'],
25
+            'statements' => [ 'break', 'continue', 'declare', 'return', 'throw', 'try' ],
26 26
         ],
27 27
         'phpdoc_single_line_var_spacing' => true,
28 28
         'phpdoc_var_without_name' => true,
Please login to merge, or discard this patch.
database/migrations/2018_08_08_100000_create_otps_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::create('otps', function (Blueprint $table) {
11
+        Schema::create('otps', function(Blueprint $table) {
12 12
             $table->id();
13 13
             $table->string('identifier');
14 14
             $table->string('token');
Please login to merge, or discard this patch.
src/OtpGenerator.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -87,11 +87,11 @@  discard block
 block discarded – undo
87 87
 
88 88
 
89 89
         // Does the property exist on this object?
90
-        if (! property_exists($this, $property)) {
90
+        if (!property_exists($this, $property)) {
91 91
             return;
92 92
         }
93 93
 
94
-        $this->{$property} = $params[0] ?? null;
94
+        $this->{$property} = $params[ 0 ] ?? null;
95 95
 
96 96
         return $this;
97 97
     }
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
     {
141 141
         $otp = OtpModel::where('identifier', $identifier)->first();
142 142
 
143
-        if (! $otp) {
143
+        if (!$otp) {
144 144
             return (object) [
145 145
                 'status' => false,
146 146
                 'message' => 'Otp does not exists, Please generate new Otp',
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
     {
181 181
         $otp = OtpModel::where('identifier', $identifier)->first();
182 182
 
183
-        if (! $otp) {
183
+        if (!$otp) {
184 184
             return (object) [
185 185
                 'status' => false,
186 186
                 'message' => 'Otp does not exists, Please generate new Otp',
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
         $length = strlen($characters);
211 211
         $pin = '';
212 212
         for ($i = 0; $i < $this->length; $i++) {
213
-            $pin .= $characters[rand(0, $length - 1)];
213
+            $pin .= $characters[ rand(0, $length - 1) ];
214 214
         }
215 215
 
216 216
         return $pin;
Please login to merge, or discard this patch.
src/OtpGeneratorServiceProvider.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
      * @return void
16 16
      */
17 17
 
18
-     public const DB = __DIR__.'/../database/migrations';
19
-     public const CONFIG = __DIR__.'/../config/otp-generator.php';
18
+        public const DB = __DIR__.'/../database/migrations';
19
+        public const CONFIG = __DIR__.'/../config/otp-generator.php';
20 20
 
21 21
     public function boot(): void
22 22
     {
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
      * @return void
16 16
      */
17 17
 
18
-     public const DB = __DIR__.'/../database/migrations';
19
-     public const CONFIG = __DIR__.'/../config/otp-generator.php';
18
+     public const DB = __DIR__ . '/../database/migrations';
19
+     public const CONFIG = __DIR__ . '/../config/otp-generator.php';
20 20
 
21 21
     public function boot(): void
22 22
     {
Please login to merge, or discard this patch.
src/Console/PruneCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,6 +29,6 @@
 block discarded – undo
29 29
      */
30 30
     public function handle(PrunableRepository $repository)
31 31
     {
32
-        $this->info($repository->prune(now()->subMinutes((int) $this->option('minutes'))).' entries pruned.');
32
+        $this->info($repository->prune(now()->subMinutes((int) $this->option('minutes'))) . ' entries pruned.');
33 33
     }
34 34
 }
Please login to merge, or discard this patch.