Completed
Push — dev ( 46c257...e6e7dc )
by Zach
03:51
created
src/Http/Controllers/SettingsController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         $deletedProjects = Project::onlyTrashed()
38 38
             ->orderBy('deleted_at', 'DESC')
39 39
             ->get()
40
-            ->map(function (Project $project) {
40
+            ->map(function(Project $project) {
41 41
                 return $project->generateProps();
42 42
             });
43 43
 
Please login to merge, or discard this patch.
src/Http/ImageFilters/Medium.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      */
18 18
     public function applyFilter(Image $image)
19 19
     {
20
-        return $image->resize(null, 300, function (Constraint $constraint) {
20
+        return $image->resize(null, 300, function(Constraint $constraint) {
21 21
             $constraint->aspectRatio();
22 22
         });
23 23
     }
Please login to merge, or discard this patch.
src/Http/ImageFilters/Thumbnail.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      */
18 18
     public function applyFilter(Image $image)
19 19
     {
20
-        return $image->resize(null, 80, function (Constraint $constraint) {
20
+        return $image->resize(null, 80, function(Constraint $constraint) {
21 21
             $constraint->aspectRatio();
22 22
         });
23 23
     }
Please login to merge, or discard this patch.
src/Http/ImageFilters/Small.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      */
18 18
     public function applyFilter(Image $image)
19 19
     {
20
-        return $image->resize(null, 150, function (Constraint $constraint) {
20
+        return $image->resize(null, 150, function(Constraint $constraint) {
21 21
             $constraint->aspectRatio();
22 22
         });
23 23
     }
Please login to merge, or discard this patch.