Completed
Push — develop ( a73e2c...030f10 )
by Carsten
28:43 queued 13:31
created
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/ImageFileCache/ApplicationListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
         // try get image from repository
67 67
         $image = $this->repository->find($id);
68 68
 
69
-        if (! $image) {
69
+        if (!$image) {
70 70
             // abort if image does not exist
71 71
             return;
72 72
         }
Please login to merge, or discard this patch.
module/Organizations/src/Controller/ProfileController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     public function indexAction()
80 80
     {
81 81
         $result = $this->pagination([
82
-            'params' => ['Organizations_Profile',[
82
+            'params' => ['Organizations_Profile', [
83 83
                     'q',
84 84
                     'count' => $this->options['count'],
85 85
                     'page' => 1,
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
 
136 136
         $result = $this->pagination([
137 137
             'params' => [
138
-                'Organization_Jobs',[
138
+                'Organization_Jobs', [
139 139
                     'q',
140 140
                     'organization_id' => $id,
141 141
                     'count' => $this->options['count'],
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
             /* @var \Zend\Paginator\Paginator $paginator */
155 155
             $paginator = $result['jobs'];
156 156
             $count = $paginator->getTotalItemCount();
157
-            if (0===$count) {
157
+            if (0 === $count) {
158 158
                 return $this->disabledProfileViewModel($organization);
159 159
             }
160 160
         }
Please login to merge, or discard this patch.
module/Organizations/src/Controller/IndexController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
         try {
125 125
             /* @var $handler \Organizations\Controller\Plugin\GetOrganizationHandler */
126 126
             $handler = $this->plugin('Organizations/GetOrganizationHandler');
127
-            $org  = $handler->process($this->params(), true);
127
+            $org = $handler->process($this->params(), true);
128 128
         } catch (MissingParentOrganizationException $e) {
129 129
             return $this->getErrorViewModel('no-parent');
130 130
         } catch (NotFoundException $e) {
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
             ];
136 136
         }
137 137
 
138
-        $container       = $this->getFormular($org);
138
+        $container = $this->getFormular($org);
139 139
 
140 140
         if (isset($formIdentifier) && $request->isPost()) {
141 141
             /* @var $form \Zend\Form\FormInterface */
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
             $form = $container->get($formIdentifier);
161 161
             $form->setData(array_merge($postData, $filesData));
162 162
             if (!isset($form)) {
163
-                throw new \RuntimeException('No form found for "' . $formIdentifier . '"');
163
+                throw new \RuntimeException('No form found for "'.$formIdentifier.'"');
164 164
             }
165 165
             $isValid = $form->isValid();
166 166
 
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.
module/Install/src/Module.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
         $services     = $application->getServiceManager();
43 43
 
44 44
         $services->get('Install/Listener/LanguageSetter')
45
-                 ->attach($eventManager);
45
+                    ->attach($eventManager);
46 46
 
47 47
         // start tracy debugging
48 48
         $services->get('Tracy')->startDebug();
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 {
24 24
     public function getConfig()
25 25
     {
26
-        return include __DIR__ . '/../config/module.config.php';
26
+        return include __DIR__.'/../config/module.config.php';
27 27
     }
28 28
 
29 29
 
Please login to merge, or discard this patch.
module/Jobs/src/Options/BaseFieldsetOptions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
  */
24 24
 class BaseFieldsetOptions extends FieldsetCustomizationOptions
25 25
 {
26
-    const TITLE =  'title';
26
+    const TITLE = 'title';
27 27
     const LOCATION = 'geoLocation';
28 28
 
29 29
     /**
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      *
32 32
      * @var array
33 33
      */
34
-    protected $fields=[
34
+    protected $fields = [
35 35
         self::TITLE => [
36 36
             'enabled' => true,
37 37
             'options' => [
Please login to merge, or discard this patch.