Passed
Pull Request — master (#16)
by Mateusz
02:48
created
database/migrations/2017_09_01_000000_create_authentication_log_table.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
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create(config('authentication-log.table_name'), function (Blueprint $table) {
16
+        Schema::create(config('authentication-log.table_name'), function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->morphs('auth');
19 19
             $table->string('ip_address', 45)->nullable();
Please login to merge, or discard this patch.
src/AuthenticationLog.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
      *
12 12
      * @var string
13 13
      */
14
-    public function __construct(array $attributes = [])
14
+    public function __construct(array $attributes = [ ])
15 15
     {
16 16
         parent::__construct($attributes);
17 17
         $this->table = config('authentication-log.table_name');
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      *
30 30
      * @var array
31 31
      */
32
-    protected $guarded = ['auth_id', 'auth_type'];
32
+    protected $guarded = [ 'auth_id', 'auth_type' ];
33 33
 
34 34
     /**
35 35
      * The attributes that should be cast to native types.
Please login to merge, or discard this patch.