Passed
Push — staging ( f4a45a...189a42 )
by Patrick
02:19
created
src/LaravelSqsFifoQueueServiceProvider.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
     public function registerDeduplicators()
82 82
     {
83 83
         foreach (['Unique', 'Content', 'Sqs'] as $deduplicator) {
84
-            $this->{"register{$deduplicator}Deduplicator"}();
84
+            $this->{"register{$deduplicator}deduplicator"}();
85 85
         }
86 86
     }
87 87
 
Please login to merge, or discard this patch.
src/Queue/Connectors/SqsFifoConnector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,14 +33,14 @@
 block discarded – undo
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
Please login to merge, or discard this patch.