Skip to content

Commit bddbab6

Browse files
committed
[fix] use new array helper
- refactors to use Arr::get instead of array_get
1 parent 7060490 commit bddbab6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Repositories/EloquentTaskRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public function import($input)
216216
Cache::forget('totem.tasks.all');
217217
Cache::forget('totem.tasks.active');
218218

219-
collect(json_decode(array_get($input, 'content')))
219+
collect(json_decode(Arr::get($input, 'content')))
220220
->each(function ($data) {
221221
Cache::forget('totem.task.'.$data->id);
222222

0 commit comments

Comments
 (0)