Completed
Push — develop ( a73e2c...030f10 )
by Carsten
28:43 queued 13:31
created
module/Organizations/src/Form/OrganizationsContactFieldset.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     public function getHydrator()
25 25
     {
26 26
         if (!$this->hydrator) {
27
-            $hydrator           = new EntityHydrator();
27
+            $hydrator = new EntityHydrator();
28 28
             $this->setHydrator($hydrator);
29 29
         }
30 30
         return $this->hydrator;
Please login to merge, or discard this patch.
module/Organizations/src/Form/LogoImageFactory.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
      *
29 29
      * @var string
30 30
      */
31
-    protected $options="Jobs/Options";
31
+    protected $options = "Jobs/Options";
32 32
 
33 33
     /**
34 34
      * Configure the Form width Options
Please login to merge, or discard this patch.
module/Organizations/src/Form/OrganizationsProfileFieldset.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     public function getHydrator()
25 25
     {
26 26
         if (!$this->hydrator) {
27
-            $hydrator           = new EntityHydrator();
27
+            $hydrator = new EntityHydrator();
28 28
             $this->setHydrator($hydrator);
29 29
         }
30 30
         return $this->hydrator;
Please login to merge, or discard this patch.
module/Organizations/src/Auth/Dependency/ListListener.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,9 +60,11 @@
 block discarded – undo
60 60
     {
61 61
         $items = [];
62 62
         
63
-        foreach ($this->repository->getUserOrganizations($user->getId(), $limit) as $organization) /* @var $organization \Organizations\Entity\Organization */
63
+        foreach ($this->repository->getUserOrganizations($user->getId(), $limit) as $organization) {
64
+            /* @var $organization \Organizations\Entity\Organization */
64 65
         {
65 66
             $name = $organization->getOrganizationName();
67
+        }
66 68
             $title = $name ? $name->getName() : '**** DRAFT ****';
67 69
             $url = $view->url('lang/organizations/edit', ['id' => $organization->getId()]);
68 70
             $items[] = new ListItem($title, $url);
Please login to merge, or discard this patch.
module/Organizations/src/Auth/Dependency/EmployeeListListener.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,9 +54,11 @@
 block discarded – undo
54 54
             return $items;
55 55
         }
56 56
         
57
-        foreach ($employees->slice(0, $limit) as $employee) /* @var $employee \Organizations\Entity\Employee */
57
+        foreach ($employees->slice(0, $limit) as $employee) {
58
+            /* @var $employee \Organizations\Entity\Employee */
58 59
         {
59 60
             $info = $employee->getUser()->getInfo();
61
+        }
60 62
             $title = $info->getDisplayName();
61 63
             $items[] = new ListItem($title);
62 64
         }
Please login to merge, or discard this patch.
module/Organizations/src/Factory/Form/EmployeeFieldsetFactory.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -46,13 +46,13 @@  discard block
 block discarded – undo
46 46
 
47 47
         /* todo: WRITE own Hydrator strategy class */
48 48
         $strategy = new ClosureStrategy(
49
-            function ($object) use ($users) {
49
+            function($object) use ($users) {
50 50
                 if (is_string($object)) {
51 51
                     return $users->find($object);
52 52
                 }
53 53
                 return $object;
54 54
             },
55
-            function ($data) use ($users) {
55
+            function($data) use ($users) {
56 56
                 if (is_string($data)) {
57 57
                     $data = $users->find($data);
58 58
                 }
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
         /* todo: write own strategy class */
64 64
         $permStrategy = new ClosureStrategy(
65 65
         // extract
66
-            function ($object) {
66
+            function($object) {
67 67
                 /* @var $object \Organizations\Entity\EmployeePermissionsInterface */
68 68
                 $values = array();
69 69
                 foreach (array(
@@ -77,10 +77,10 @@  discard block
 block discarded – undo
77 77
 
78 78
                 return $values;
79 79
             },
80
-            function ($data) {
80
+            function($data) {
81 81
                 $permissions = array_reduce(
82 82
                     $data,
83
-                    function ($c, $i) {
83
+                    function($c, $i) {
84 84
                         return $c | $i;
85 85
                     },
86 86
                     0
Please login to merge, or discard this patch.
src/Factory/Controller/Plugin/AcceptInvitationHandlerFactory.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,8 +40,8 @@
 block discarded – undo
40 40
 
41 41
         $plugin = new AcceptInvitationHandler();
42 42
         $plugin->setUserRepository($userRepository)
43
-               ->setOrganizationRepository($organizationRepository)
44
-               ->setAuthenticationService($authenticationService);
43
+                ->setOrganizationRepository($organizationRepository)
44
+                ->setAuthenticationService($authenticationService);
45 45
 
46 46
         return $plugin;
47 47
     }
Please login to merge, or discard this patch.
module/Organizations/src/Filter/Recipients.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     {
36 36
         if (!$value instanceof Job) {
37 37
         }
38
-        $reciptients=[];
38
+        $reciptients = [];
39 39
 
40 40
         return $reciptients;
41 41
     }
Please login to merge, or discard this patch.
module/Organizations/src/Entity/Organization.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -47,17 +47,17 @@  discard block
 block discarded – undo
47 47
     /**
48 48
      * Always enabled even if there are no active jobs
49 49
      */
50
-    const PROFILE_ALWAYS_ENABLE     = 'always';
50
+    const PROFILE_ALWAYS_ENABLE = 'always';
51 51
 
52 52
     /**
53 53
      * Hide if there are no jobs available
54 54
      */
55
-    const PROFILE_ACTIVE_JOBS       = 'active-jobs';
55
+    const PROFILE_ACTIVE_JOBS = 'active-jobs';
56 56
 
57 57
     /**
58 58
      * Always disabled profile
59 59
      */
60
-    const PROFILE_DISABLED          = 'disabled';
60
+    const PROFILE_DISABLED = 'disabled';
61 61
 
62 62
     /**
63 63
      * Event name of post construct event.
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
      */
286 286
     public function getParent($returnSelf = false)
287 287
     {
288
-        return $this->parent ? : ($returnSelf ? $this : null);
288
+        return $this->parent ?: ($returnSelf ? $this : null);
289 289
     }
290 290
 
291 291
     /**
@@ -516,7 +516,7 @@  discard block
 block discarded – undo
516 516
      */
517 517
     public function getPermissionsResourceId()
518 518
     {
519
-        return 'organization:' . $this->getId();
519
+        return 'organization:'.$this->getId();
520 520
     }
521 521
 
522 522
     /**
Please login to merge, or discard this patch.