Passed
Branch main (84e8a4)
by Andrey
16:03
created
Category
src/Variables/Model.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
database/migrations/2019_07_19_140305_create_shorts_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.