@@ -13,8 +13,8 @@ discard block |
||
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 |
||
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, |
@@ -8,7 +8,7 @@ |
||
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'); |
@@ -87,11 +87,11 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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; |
@@ -15,8 +15,8 @@ |
||
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 | { |
@@ -15,8 +15,8 @@ |
||
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 | { |
@@ -29,6 +29,6 @@ |
||
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 | } |