Passed
Branch master (fb19e0)
by Dmitry
04:27
created
Category
src/DB/Config/DBCleanerConfig.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
         $this->transactional = filter_var($config['transactional'] ?? true, FILTER_VALIDATE_BOOLEAN);
22 22
 
23 23
         $this->queries = array_map(
24
-            function (QueryConfig $query) {
24
+            function(QueryConfig $query) {
25 25
                 return $query;
26 26
             },
27 27
             $config['queries']
Please login to merge, or discard this patch.
src/DB/DoctrineDBALCleaner.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     public function clear(): void
35 35
     {
36 36
         if ($this->config->isTransactional()) {
37
-            $this->connection->transactional(function () {
37
+            $this->connection->transactional(function() {
38 38
                 $this->executeQueries();
39 39
             });
40 40
         } else {
Please login to merge, or discard this patch.