@@ -37,7 +37,7 @@ |
||
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 |
@@ -17,7 +17,7 @@ |
||
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 | } |
@@ -17,7 +17,7 @@ |
||
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 | } |
@@ -17,7 +17,7 @@ |
||
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 | } |