Passed
Push — main ( 9c4c34...0a353f )
by PRATIK
04:33
created
src/Models/Admin/Post.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,11 +25,11 @@  discard block
 block discarded – undo
25 25
     {
26 26
         parent::boot();
27 27
 
28
-        static::saving(function () {
28
+        static::saving(function() {
29 29
             self::cacheKey();
30 30
         });
31 31
 
32
-        static::deleting(function () {
32
+        static::deleting(function() {
33 33
             self::cacheKey();
34 34
         });
35 35
     }
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 
76 76
     public function getNetworkImageAttribute()
77 77
     {
78
-        return isset($this->image) ? url('storage/' . $this->image) : null;
78
+        return isset($this->image) ? url('storage/'.$this->image) : null;
79 79
     }
80 80
 
81 81
     // Relation
Please login to merge, or discard this patch.