mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-02 03:51:18 +00:00
Remove unnecessary slash from in_array()
This commit is contained in:
@@ -144,7 +144,7 @@ trait RequestInformation
|
||||
{
|
||||
$triggers = [];
|
||||
$data = $request->get('triggers');
|
||||
if (\is_array($data)) {
|
||||
if (is_array($data)) {
|
||||
foreach ($data as $index => $triggerInfo) {
|
||||
$triggers[] = [
|
||||
'type' => $triggerInfo['type'] ?? '',
|
||||
|
||||
Reference in New Issue
Block a user