Test Failed
Push — master ( 8058df...bae25b )
by Nur
10:24 queued 27s
created
src/Models/Like.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,10 +37,10 @@
 block discarded – undo
37 37
     /**
38 38
      * @access private
39 39
      */
40
-	public function likeable(): MorphTo
41
-	{
42
-		return $this->morphTo();
43
-	}
40
+ public function likeable(): MorphTo
41
+ {
42
+  return $this->morphTo();
43
+ }
44 44
     /**
45 45
      * Return the like's author.
46 46
      */
Please login to merge, or discard this patch.
src/Models/LikeCounter.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@
 block discarded – undo
11 11
  */
12 12
 class LikeCounter extends Model implements LikeCounterContract
13 13
 {
14
-	protected $table = 'like_counters';
15
-	protected $fillable = [
14
+ protected $table = 'like_counters';
15
+ protected $fillable = [
16 16
         'type_id',
17 17
         'count',
18 18
     ];
Please login to merge, or discard this patch.