Completed
Push — master ( 332622...8e81d0 )
by Manuel
14:17 queued 09:41
created
app/User.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -11,30 +11,30 @@
 block discarded – undo
11 11
 use Illuminate\Foundation\Auth\Access\Authorizable;
12 12
 
13 13
 class User extends Model implements
14
-    AuthenticatableContract,
15
-    AuthorizableContract,
16
-    CanResetPasswordContract
14
+	AuthenticatableContract,
15
+	AuthorizableContract,
16
+	CanResetPasswordContract
17 17
 {
18
-    use Authenticatable, Authorizable, CanResetPassword;
18
+	use Authenticatable, Authorizable, CanResetPassword;
19 19
 
20
-    /**
21
-     * The database table used by the model.
22
-     *
23
-     * @var string
24
-     */
25
-    protected $table = 'users';
20
+	/**
21
+	 * The database table used by the model.
22
+	 *
23
+	 * @var string
24
+	 */
25
+	protected $table = 'users';
26 26
 
27
-    /**
28
-     * The attributes that are mass assignable.
29
-     *
30
-     * @var array
31
-     */
32
-    protected $fillable = ['email', 'password'];
27
+	/**
28
+	 * The attributes that are mass assignable.
29
+	 *
30
+	 * @var array
31
+	 */
32
+	protected $fillable = ['email', 'password'];
33 33
 
34
-    /**
35
-     * The attributes excluded from the model's JSON form.
36
-     *
37
-     * @var array
38
-     */
39
-    protected $hidden = ['password', 'remember_token'];
34
+	/**
35
+	 * The attributes excluded from the model's JSON form.
36
+	 *
37
+	 * @var array
38
+	 */
39
+	protected $hidden = ['password', 'remember_token'];
40 40
 }
Please login to merge, or discard this patch.