Passed
Push — master ( 96e9f9...c4db20 )
by Adrien
07:37
created
server/Application/Repository/AccountRepository.php 1 patch
Switch Indentation   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -198,6 +198,4 @@
 block discarded – undo
198 198
 
199 199
         $count = $this->getEntityManager()->getConnection()->executeStatement($sql);
200 200
 
201
-        return $count;
202
-    }
203
-}
201
+        return $count
204 202
\ No newline at end of file
Please login to merge, or discard this patch.
server/Application/Service/Accounting.php 1 patch
Switch Indentation   +1 added lines, -6 removed lines patch added patch discarded remove patch
@@ -304,9 +304,4 @@
 block discarded – undo
304 304
                     $user->getId(),
305 305
                     $user->getName(),
306 306
                     $user->getOwner()->getId(),
307
-                    $user->getOwner()->getName()
308
-                )
309
-            );
310
-        }
311
-    }
312
-}
307
+                    $user->getOwner
313 308
\ No newline at end of file
Please login to merge, or discard this patch.
Api/Input/Operator/BookableBookingCount/AbstractOperatorType.php 1 patch
Switch Indentation   +1 added lines, -5 removed lines patch added patch discarded remove patch
@@ -49,8 +49,4 @@
 block discarded – undo
49 49
                         EXISTS (
50 50
                             SELECT $bookingAlias.id FROM $bookingClass $bookingAlias
51 51
                             WHERE $bookingAlias.bookable = $alias.id AND $bookingAlias.endDate IS NULL
52
-                            HAVING COUNT($bookingAlias.id) $dqlOperator :$param
53
-                        )
54
-            STRING;
55
-    }
56
-}
52
+                            HAVING COUNT($bookingAlias.id) $dqlOperator :$param
57 53
\ No newline at end of file
Please login to merge, or discard this patch.
bin/generate-client-configuration.php 1 patch
Switch Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,4 +19,4 @@
 block discarded – undo
19 19
     export const localConfig = $json;
20 20
     STRING;
21 21
 
22
-file_put_contents('client/app/shared/generated-config.ts', $code);
22
+file_put_contents('client/app/shared/generated-config.ts', $code
23 23
\ No newline at end of file
Please login to merge, or discard this patch.
tests/ApplicationTest/Service/AccountingTest.php 1 patch
Switch Indentation   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -85,6 +85,4 @@
 block discarded – undo
85 85
         }
86 86
 
87 87
         $this->expectExceptionMessage('Le bouclement a déjà été fait au 2019-12-31');
88
-        $this->accounting->close($closingDate, $output);
89
-    }
90
-}
88
+        $this->accounting->close($closingDate, $output
91 89
\ No newline at end of file
Please login to merge, or discard this patch.