@@ -18,7 +18,7 @@ |
||
18 | 18 | */ |
19 | 19 | public static function verify(int $value) |
20 | 20 | { |
21 | - if (! is_int($value) || ! in_array($value, self::available())) { |
|
21 | + if ( ! is_int($value) || ! in_array($value, self::available())) { |
|
22 | 22 | throw new IncorrectModelKeyIdentifierException($value); |
23 | 23 | } |
24 | 24 | } |
@@ -10,7 +10,7 @@ |
||
10 | 10 | |
11 | 11 | public function up() |
12 | 12 | { |
13 | - $this->createTable(static function (Blueprint $table) { |
|
13 | + $this->createTable(static function(Blueprint $table) { |
|
14 | 14 | $table->bigIncrements('id'); |
15 | 15 | |
16 | 16 | $table->string('key')->nullable()->index(); |