Completed
Push — master ( 662b17...55cf61 )
by Oliver
10:02
created
tests/AbstractTestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
             'prefix'   => '',
24 24
         ]);
25 25
 
26
-        if (! class_exists('MetaMigration')) {
26
+        if (!class_exists('MetaMigration')) {
27 27
             static::makeMigration();
28 28
         } else {
29 29
             static::migrate();
Please login to merge, or discard this patch.
tests/Migrations/2015_01_12_235959_Model_Migration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function up()
23 23
     {
24
-        Schema::create('models', function (Blueprint $table) {
24
+        Schema::create('models', function(Blueprint $table) {
25 25
             $table->bigIncrements('id');
26 26
             $table->timestamps();
27 27
         });
Please login to merge, or discard this patch.