@@ -33,14 +33,14 @@ |
||
| 33 | 33 | // Pull the custom config options out of the config array sent to SqsClient. |
| 34 | 34 | $group = Arr::pull($config, 'group', 'default'); |
| 35 | 35 | $deduplicator = Arr::pull($config, 'deduplicator', 'unique'); |
| 36 | - $allowDelay = (bool)Arr::pull($config, 'allow_delay', false); |
|
| 36 | + $allowDelay = (bool) Arr::pull($config, 'allow_delay', false); |
|
| 37 | 37 | |
| 38 | 38 | return new SqsFifoQueue( |
| 39 | 39 | new SqsClient($config), |
| 40 | 40 | $config['queue'], |
| 41 | 41 | $config['prefix'] ?? '', |
| 42 | 42 | $config['suffix'] ?? '', |
| 43 | - (bool)($config['after_commit'] ?? null), |
|
| 43 | + (bool) ($config['after_commit'] ?? null), |
|
| 44 | 44 | $group, |
| 45 | 45 | $deduplicator, |
| 46 | 46 | $allowDelay |