@@ -42,8 +42,7 @@ |
||
42 | 42 | public function fire() |
43 | 43 | { |
44 | 44 | $queue = ($this->argument('queue')) ? |
45 | - $this->argument('queue') : |
|
46 | - config('queue.connections.beanstalkd.queue'); |
|
45 | + $this->argument('queue') : config('queue.connections.beanstalkd.queue'); |
|
47 | 46 | |
48 | 47 | $this->info(sprintf('Clearing queue: %s', $queue)); |
49 | 48 |
@@ -11,13 +11,13 @@ |
||
11 | 11 | |
12 | 12 | public static function downloadAll() |
13 | 13 | { |
14 | - Excel::create('Responses '.date('Y-m-d'), function ($excel) { |
|
14 | + Excel::create('Responses '.date('Y-m-d'), function($excel) { |
|
15 | 15 | |
16 | - $excel->sheet('Responses', function ($sheet) { |
|
16 | + $excel->sheet('Responses', function($sheet) { |
|
17 | 17 | |
18 | 18 | $sheet->freezeFirstRow(); |
19 | 19 | |
20 | - $sheet->cells('A1:Z1', function ($cells) { |
|
20 | + $sheet->cells('A1:Z1', function($cells) { |
|
21 | 21 | $cells->setFontWeight('bold'); |
22 | 22 | $cells->setBorder('node', 'none', 'solid', 'none'); |
23 | 23 | }); |
@@ -56,7 +56,7 @@ |
||
56 | 56 | |
57 | 57 | $collectionName = $request->get('collectionName'); |
58 | 58 | |
59 | - $media = $model->getMedia($collectionName)->reduce(function (Collection $collection, Media $media) { |
|
59 | + $media = $model->getMedia($collectionName)->reduce(function(Collection $collection, Media $media) { |
|
60 | 60 | return $collection->push([ |
61 | 61 | 'thumb' => $media->getUrl('admin'), |
62 | 62 | 'image' => $media->getUrl('redactor'), |
@@ -31,7 +31,7 @@ |
||
31 | 31 | foreach ($this->cacheRepositories as $repositoryName) { |
32 | 32 | $events->listen( |
33 | 33 | "eloquent.saved: App\\Models\\{$repositoryName}", |
34 | - function () {Cache::flush();} |
|
34 | + function() {Cache::flush(); } |
|
35 | 35 | ); |
36 | 36 | } |
37 | 37 | } |
@@ -10,7 +10,7 @@ |
||
10 | 10 | |
11 | 11 | protected static function bootDraftable() |
12 | 12 | { |
13 | - static::updating(function ($model) { |
|
13 | + static::updating(function($model) { |
|
14 | 14 | $model->wasDraft = $model->isDraft(); |
15 | 15 | $model->draft = false; |
16 | 16 | }); |
@@ -16,7 +16,7 @@ |
||
16 | 16 | |
17 | 17 | public function tagsWithType(TagType $type) : Collection |
18 | 18 | { |
19 | - return $this->tags->filter(function (Tag $tag) use ($type) { |
|
19 | + return $this->tags->filter(function(Tag $tag) use ($type) { |
|
20 | 20 | return $tag->hasType($type); |
21 | 21 | }); |
22 | 22 | } |
@@ -34,7 +34,7 @@ |
||
34 | 34 | |
35 | 35 | public function clearTemporaryMedia() |
36 | 36 | { |
37 | - $this->media()->get()->each(function (Media $media) { |
|
37 | + $this->media()->get()->each(function(Media $media) { |
|
38 | 38 | if ($media->getCustomProperty('temp', false) === true) { |
39 | 39 | $media->delete(); |
40 | 40 | } |
@@ -18,7 +18,7 @@ |
||
18 | 18 | |
19 | 19 | public function updateTagsForType(string $type) |
20 | 20 | { |
21 | - collect($this->request->get("{$type}_tags"))->each(function ($name) use ($type) { |
|
21 | + collect($this->request->get("{$type}_tags"))->each(function($name) use ($type) { |
|
22 | 22 | $type = new TagType($type); |
23 | 23 | |
24 | 24 | $tag = Tag::findByNameOrCreate($name, $type); |
@@ -22,7 +22,7 @@ |
||
22 | 22 | $collection |
23 | 23 | ); |
24 | 24 | |
25 | - collect($updatedMedia)->each(function (Media $media) { |
|
25 | + collect($updatedMedia)->each(function(Media $media) { |
|
26 | 26 | $media->setCustomProperty('temp', false); |
27 | 27 | $media->save(); |
28 | 28 | }); |