Passed
Pull Request — master (#97)
by Chris
02:52
created
src/Form/ManageTicket.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace ConferenceTools\Tickets\Form;
6 6
 
Please login to merge, or discard this patch.
src/Form/FormInputFilterDelegator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace ConferenceTools\Tickets\Form;
6 6
 
Please login to merge, or discard this patch.
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.