Passed
Pull Request — master (#5)
by Maksim
05:00
created
tests/database/migrations/2014_10_12_000004_create_binary_roles_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function up()
13 13
     {
14
-        Schema::create('binary_roles', function (Blueprint $table) {
14
+        Schema::create('binary_roles', function(Blueprint $table) {
15 15
             $table->binary('role_id');
16 16
             $table->string('name');
17 17
         });
Please login to merge, or discard this patch.
tests/BinaryKeysTestWithMutators.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     protected function getEnvironmentSetUp($app)
14 14
     {
15 15
         $app['config']->set('database.default', 'testing');
16
-        $app['router']->get('binary-users/{binaryUser}', function (TestBinaryUserHex $binaryUser) {
16
+        $app['router']->get('binary-users/{binaryUser}', function(TestBinaryUserHex $binaryUser) {
17 17
             return $binaryUser->toJson();
18 18
         })->middleware(SubstituteBindings::class);
19 19
     }
Please login to merge, or discard this patch.