Passed
Push — master ( 9be0c8...8c1bed )
by Chris
02:56
created
src/Domain/Service/Availability/Filters/IsAvailable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 {
11 11
     public function filter(Collection $tickets): Collection
12 12
     {
13
-        $p = function (TicketCounter $ticket) {
13
+        $p = function(TicketCounter $ticket) {
14 14
             return $ticket->getRemaining() > 0;
15 15
         };
16 16
         return $tickets->filter($p);
Please login to merge, or discard this patch.
src/Domain/Service/Availability/Filters/IsPrivate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     public function filter(Collection $tickets): Collection
29 29
     {
30 30
         $configuration = $this->configuration;
31
-        $p = function (TicketCounter $ticket) use ($configuration) {
31
+        $p = function(TicketCounter $ticket) use ($configuration) {
32 32
             $metadata = $configuration->getTicketMetadata($ticket->getTicketType()->getIdentifier());
33 33
             return !$metadata->isPrivateTicket();
34 34
         };
Please login to merge, or discard this patch.