Completed
Push — master ( 1db7ad...901094 )
by Rocco
06:20
created
src/Infrastructure/DBAL/DbalMapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
         $findStatement->execute();
28 28
         $resultSet = $findStatement->fetch();
29 29
 
30
-        if (! $resultSet) {
30
+        if (!$resultSet) {
31 31
             return null;
32 32
         }
33 33
 
Please login to merge, or discard this patch.
src/Infrastructure/DBAL/DbalShiftMapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
     protected static function findInTimePeriodByEmployeeIdStatement()
52 52
     {
53
-        return self::findInTimePeriodStatement() . " and s.employee_id = :employee_id";
53
+        return self::findInTimePeriodStatement()." and s.employee_id = :employee_id";
54 54
     }
55 55
 
56 56
     protected static function findOpenShiftsStatement()
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 
104 104
     public function find($id)
105 105
     {
106
-        if (! is_int($id)) {
106
+        if (!is_int($id)) {
107 107
             throw new \InvalidArgumentException("The id must be an integer");
108 108
         }
109 109
 
Please login to merge, or discard this patch.
src/Infrastructure/DBAL/DbalUserMapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 
37 37
     public function find($id)
38 38
     {
39
-        if (! is_int($id)) {
39
+        if (!is_int($id)) {
40 40
             throw new \InvalidArgumentException("The id must be an integer");
41 41
         }
42 42
 
Please login to merge, or discard this patch.
src/Web/Resource/ShiftResource.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
         ];
27 27
 
28 28
         if ($shift->hasCoworkers()) {
29
-            $resource['coworkers'] = array_map(function (User $coworker) {
29
+            $resource['coworkers'] = array_map(function(User $coworker) {
30 30
                 return $this->userResource->transform($coworker);
31 31
             }, $shift->getCoworkers());
32 32
         }
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     public function collection(array $shifts)
43 43
     {
44 44
         return [
45
-            "shifts" => array_map(function (Shift $shift) {
45
+            "shifts" => array_map(function(Shift $shift) {
46 46
                 return $this->transform($shift);
47 47
             }, $shifts)
48 48
         ];
Please login to merge, or discard this patch.
src/Web/Radar/Config/RoutesConfig.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,10 +38,10 @@
 block discarded – undo
38 38
         $adr = $di->get('radar/adr:adr');
39 39
         $adr->input(Input\Input::class);
40 40
 
41
-        $adr->get('entry', "/", function ($user) {
41
+        $adr->get('entry', "/", function($user) {
42 42
             $payload = new \Aura\Payload\Payload();
43 43
 
44
-            if (! $user->isAuthenticated()) {
44
+            if (!$user->isAuthenticated()) {
45 45
                 return $payload->setStatus($payload::NOT_AUTHENTICATED);
46 46
             }
47 47
 
Please login to merge, or discard this patch.
src/Web/Radar/Config/SeedConfig.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,17 +14,17 @@
 block discarded – undo
14 14
         $adr = $di->get('radar/adr:adr');
15 15
 
16 16
         // For demonstration purposes, seed database using test fixtures
17
-        $adr->get('seed', "/seed", function () use ($di) {
17
+        $adr->get('seed', "/seed", function() use ($di) {
18 18
             $payload = new Payload();
19 19
 
20 20
             $di->get('db.schema')->drop();
21 21
             $di->get('db.schema')->create();
22 22
 
23 23
             $yaml = new Parser();
24
-            $yamlFile = __DIR__ . "/../../../../tests/Infrastructure/DBAL/fixtures.yml";
24
+            $yamlFile = __DIR__."/../../../../tests/Infrastructure/DBAL/fixtures.yml";
25 25
             $fixtures = $yaml->parse(file_get_contents($yamlFile));
26 26
 
27
-            if (! is_array($fixtures)) {
27
+            if (!is_array($fixtures)) {
28 28
                 throw new RuntimeException("Could not parse fixtures file");
29 29
             }
30 30
 
Please login to merge, or discard this patch.
src/Domain/Model/User/InMemoryAuthenticator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 
17 17
     public function authenticate($token)
18 18
     {
19
-        if (! array_key_exists($token, $this->tokenMap)) {
19
+        if (!array_key_exists($token, $this->tokenMap)) {
20 20
             return new NullUser();
21 21
         }
22 22
 
Please login to merge, or discard this patch.
src/Domain/Model/User/User.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     public function __construct($id, $name, $role, $email = null, $phone = null,
36 36
         DateTimeInterface $created = null, DateTimeInterface $updated = null)
37 37
     {
38
-        if (isset($id) && ! is_int($id)) {
38
+        if (isset($id) && !is_int($id)) {
39 39
             throw new \InvalidArgumentException("The id must be an integer");
40 40
         }
41 41
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
             throw new \InvalidArgumentException("At least one of phone or email must be defined");
44 44
         }
45 45
 
46
-        if (! isset(self::$roles[$role])) {
46
+        if (!isset(self::$roles[$role])) {
47 47
             throw new \InvalidArgumentException("The role must be either employee or manager");
48 48
         }
49 49
 
Please login to merge, or discard this patch.
src/Domain/Model/Shift/ShiftCoworkersFinder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,11 +23,11 @@
 block discarded – undo
23 23
 
24 24
         $employee = $shift->getEmployee();
25 25
 
26
-        $shifts = array_filter($shifts, function ($shift) use ($employee) {
26
+        $shifts = array_filter($shifts, function($shift) use ($employee) {
27 27
             return $shift->getEmployee()->getId() !== $employee->getId();
28 28
         });
29 29
 
30
-        $coworkers = array_map(function ($shift) {
30
+        $coworkers = array_map(function($shift) {
31 31
             return $shift->getEmployee();
32 32
         }, $shifts);
33 33
 
Please login to merge, or discard this patch.