Passed
Push — master ( c58a40...6d37ad )
by Mathias
10:02 queued 04:27
created
module/Organizations/src/Entity/OrganizationInterface.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -118,11 +118,11 @@
 block discarded – undo
118 118
 
119 119
 
120 120
     /**
121
-    * Sets the name of the organization
122
-    *
123
-    * @param OrganizationName organizationName
124
-    * @return OrganizationInterface
125
-    */
121
+     * Sets the name of the organization
122
+     *
123
+     * @param OrganizationName organizationName
124
+     * @return OrganizationInterface
125
+     */
126 126
     public function setOrganizationName(OrganizationName $organizationNames);
127 127
 
128 128
     /**
Please login to merge, or discard this patch.
module/Organizations/src/Entity/EmployeePermissionsInterface.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -27,13 +27,13 @@
 block discarded – undo
27 27
      *
28 28
      * @var int
29 29
      */
30
-    const JOBS_VIEW           = 16;      //  10000
31
-    const JOBS_CREATE         = 24;      //  11000  # Create w/o View makes no sense
32
-    const JOBS_CHANGE         = 20;      //  10100  # Change w/o view makes no sense
33
-    const APPLICATIONS_VIEW   = 2;       //  00010
34
-    const APPLICATIONS_CHANGE = 3;       //  00011  # change w/o view makes no sense
35
-    const ALL                 = 31;      //  11111
36
-    const NONE                = 0;       //  00000
30
+    const JOBS_VIEW           = 16; //  10000
31
+    const JOBS_CREATE         = 24; //  11000  # Create w/o View makes no sense
32
+    const JOBS_CHANGE         = 20; //  10100  # Change w/o view makes no sense
33
+    const APPLICATIONS_VIEW   = 2; //  00010
34
+    const APPLICATIONS_CHANGE = 3; //  00011  # change w/o view makes no sense
35
+    const ALL                 = 31; //  11111
36
+    const NONE                = 0; //  00000
37 37
     /**#@- */
38 38
 
39 39
     /**
Please login to merge, or discard this patch.
module/Organizations/src/Entity/Hydrator/OrganizationHydrator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
             if (!$this->filterComposite->filter($propertyName)) {
60 60
                 continue;
61 61
             }
62
-            $getter = 'get' . ucfirst($propertyName);
62
+            $getter = 'get'.ucfirst($propertyName);
63 63
             $value = method_exists($object, $getter)
64 64
                    ? $object->$getter()
65 65
                    : $property->getValue($object);
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         foreach ($this->data as $key => $value) {
88 88
             if (isset($reflProperties[$key])) {
89 89
                 $value  = $this->hydrateValue($key, $value);
90
-                $setter = 'set' . ucfirst($key);
90
+                $setter = 'set'.ucfirst($key);
91 91
                 if (method_exists($object, $setter)) {
92 92
                     $object->$setter($value);
93 93
                 } else {
Please login to merge, or discard this patch.
module/Organizations/src/Entity/Template.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
      */
82 82
     public function setLabelQualifications($labelQualifications)
83 83
     {
84
-        $this->labelQualifications=$labelQualifications;
84
+        $this->labelQualifications = $labelQualifications;
85 85
         return $this;
86 86
     }
87 87
 
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
      */
105 105
     public function setLabelBenefits($labelBenefits)
106 106
     {
107
-        $this->labelBenefits=$labelBenefits;
107
+        $this->labelBenefits = $labelBenefits;
108 108
         return $this;
109 109
     }
110 110
 
Please login to merge, or discard this patch.
module/Organizations/src/Mail/EmployeeInvitationFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
      * @return void
108 108
      * @throws \InvalidArgumentException
109 109
      */
110
-    public function setCreationOptions(array $options=null)
110
+    public function setCreationOptions(array $options = null)
111 111
     {
112 112
         if (!isset($options['user']) || !$options['user'] instanceof UserInterface) {
113 113
             throw new \InvalidArgumentException('An user interface is required!');
Please login to merge, or discard this patch.
module/Organizations/src/ImageFileCache/ODMListener.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      */
49 49
     public function getSubscribedEvents()
50 50
     {
51
-        if (! $this->manager->isEnabled()) {
51
+        if (!$this->manager->isEnabled()) {
52 52
             return [];
53 53
         }
54 54
         
@@ -66,19 +66,19 @@  discard block
 block discarded – undo
66 66
         $organization = $eventArgs->getDocument();
67 67
         
68 68
         // check for a organization instance
69
-        if (! $organization instanceof Organization) {
69
+        if (!$organization instanceof Organization) {
70 70
             return;
71 71
         }
72 72
         
73 73
         // check if the image has been changed
74
-        if (! $eventArgs->hasChangedField('image')) {
74
+        if (!$eventArgs->hasChangedField('image')) {
75 75
             return;
76 76
         }
77 77
         
78 78
         $image = $eventArgs->getOldValue('image');
79 79
         
80 80
         // check if any image existed
81
-        if (! $image instanceof OrganizationImage) {
81
+        if (!$image instanceof OrganizationImage) {
82 82
             return;
83 83
         }
84 84
         
Please login to merge, or discard this patch.
module/Organizations/src/Controller/Plugin/AcceptInvitationHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@
 block discarded – undo
127 127
 
128 128
     public function process($token, $organizationId)
129 129
     {
130
-        $organizationRepository   = $this->getOrganizationRepository();
130
+        $organizationRepository = $this->getOrganizationRepository();
131 131
         $organization = $organizationRepository->find($organizationId); /* @var $organization \Organizations\Entity\OrganizationInterface */
132 132
 
133 133
         if (!$organization) {
Please login to merge, or discard this patch.
module/Organizations/src/Controller/Plugin/GetOrganizationHandler.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -47,9 +47,9 @@  discard block
 block discarded – undo
47 47
 
48 48
     public function __construct(RepositoryService $repositoryService, AuthenticationService $auth, Acl $acl)
49 49
     {
50
-        $this->repositoryService=$repositoryService;
51
-        $this->auth=$auth;
52
-        $this->acl=$acl;
50
+        $this->repositoryService = $repositoryService;
51
+        $this->auth = $auth;
52
+        $this->acl = $acl;
53 53
     }
54 54
 
55 55
     public function __invoke()
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      */
69 69
     public function process(Params $params, $allowDraft = true)
70 70
     {
71
-        $repositories   = $this->repositoryService;
71
+        $repositories = $this->repositoryService;
72 72
         /* @var \Organizations\Repository\Organization $organizationRepository */
73 73
         $organizationRepository = $this->repositoryService->get('Organizations/Organization');
74 74
 
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         $user = $this->auth->getUser(); /* @var $user \Auth\Entity\UserInterface */
78 78
 
79 79
         /* @var $organizationId string */
80
-        $organizationId = empty($idFromRoute)?$idFromSubForm:$idFromRoute;
80
+        $organizationId = empty($idFromRoute) ? $idFromSubForm : $idFromRoute;
81 81
 
82 82
         $editOwnOrganization = '__my__' === $organizationId;
83 83
 
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
             return $organization;
112 112
         }
113 113
 
114
-        $organization      = $organizationRepository->find($organizationId);
114
+        $organization = $organizationRepository->find($organizationId);
115 115
         if (!$organization) {
116 116
             throw new NotFoundException($organizationId);
117 117
         }
Please login to merge, or discard this patch.
module/Organizations/src/Controller/Plugin/InvitationHandler.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -310,9 +310,9 @@
 block discarded – undo
310 310
         if (!$user) {
311 311
             $user = $repository->create();
312 312
             $user->setEmail($email)
313
-                 ->setLogin($email)
314
-                 ->setRole(\Auth\Entity\User::ROLE_RECRUITER)
315
-                 ->setIsDraft(true);
313
+                    ->setLogin($email)
314
+                    ->setRole(\Auth\Entity\User::ROLE_RECRUITER)
315
+                    ->setIsDraft(true);
316 316
             $info = $user->getInfo();
317 317
             /* @var $info \Auth\Entity\InfoInterface */
318 318
             $info->setEmail($email);
Please login to merge, or discard this patch.