Completed
Push — develop ( 037ef6...a650ad )
by Carsten
06:58
created
module/Cv/src/Cv/Form/SearchFormFieldset.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
                 ],
63 63
                 'attributes' => [
64 64
                     'value' => '10', // default distance
65
-                    'data-searchbox' => -1,  // hide the search box
65
+                    'data-searchbox' => -1, // hide the search box
66 66
                     'data-allowclear' => 'false', // allow to clear a selected value
67 67
                     'data-placeholder' => /*@translate*/ 'Distance',
68 68
                 ]
Please login to merge, or discard this patch.
module/Cv/src/Cv/Entity/PreferredJob.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     
87 87
     public function setDesiredJob($desiredJob)
88 88
     {
89
-        $this->desiredJob=$desiredJob;
89
+        $this->desiredJob = $desiredJob;
90 90
         return $this;
91 91
     }
92 92
 
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      */
106 106
     public function setDesiredLocation($desiredLocation)
107 107
     {
108
-        $this->desiredLocation=$desiredLocation;
108
+        $this->desiredLocation = $desiredLocation;
109 109
         return $this;
110 110
     }
111 111
 
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
      */
144 144
     public function setWillingnessToTravel($willingnessToTravel)
145 145
     {
146
-        $this->willingnessToTravel=$willingnessToTravel;
146
+        $this->willingnessToTravel = $willingnessToTravel;
147 147
         return $this;
148 148
     }
149 149
 
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
      */
163 163
     public function setExpectedSalary($expectedSalary)
164 164
     {
165
-        $this->expectedSalary=$expectedSalary;
165
+        $this->expectedSalary = $expectedSalary;
166 166
         return $this;
167 167
     }
168 168
 
Please login to merge, or discard this patch.
module/Orders/src/Entity/InvoiceAddress.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
  * ${CARET}
18 18
  *
19 19
  * @ODM\EmbeddedDocument
20
-
21 20
  * @author Mathias Gelhausen <[email protected]>
22 21
  * @todo write test 
23 22
  */
Please login to merge, or discard this patch.
module/Applications/src/Applications/Controller/ManageController.php 2 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
             $application->changeStatus(
146 146
                 $application->getStatus(),
147 147
                 sprintf(/*@translate*/ 'Application was read by %s',
148
-                                       $this->auth()->getUser()->getInfo()->getDisplayName()));
148
+                                        $this->auth()->getUser()->getInfo()->getDisplayName()));
149 149
         }
150 150
 
151 151
 
@@ -172,9 +172,9 @@  discard block
 block discarded – undo
172 172
                         $viewModel->setVariables(
173 173
                             /*array(
174 174
                             'application' => */$this->serviceLocator
175
-                                              ->get('builders')
176
-                                              ->get('JsonApplication')
177
-                                              ->unbuild($application)
175
+                                                ->get('builders')
176
+                                                ->get('JsonApplication')
177
+                                                ->unbuild($application)
178 178
                         );
179 179
                         $viewModel->setVariable('isUnread', $applicationIsUnread);
180 180
                         $return = $viewModel;
@@ -337,12 +337,12 @@  discard block
 block discarded – undo
337 337
 
338 338
         /* @var ApplicationEvent $event */
339 339
         $event = $events->getEvent(ApplicationEvent::EVENT_APPLICATION_STATUS_CHANGE,
340
-                                   $this,
341
-                                   [
342
-                                       'application' => $application,
343
-                                       'status' => $status,
344
-                                       'user' => $this->auth()->getUser(),
345
-                                   ]
340
+                                    $this,
341
+                                    [
342
+                                        'application' => $application,
343
+                                        'status' => $status,
344
+                                        'user' => $this->auth()->getUser(),
345
+                                    ]
346 346
         );
347 347
 
348 348
         $event->setIsPostRequest($request->isPost());
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
         $emailAddress = $this->params()->fromQuery('email');
394 394
         /* @var \Applications\Entity\Application $application */
395 395
         $application  = $services->get('repositories')->get('Applications/Application')
396
-                                 ->find($this->params('id'));
396
+                                    ->find($this->params('id'));
397 397
         
398 398
         $this->acl($application, 'forward');
399 399
         
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -84,11 +84,11 @@  discard block
 block discarded – undo
84 84
         }
85 85
         $statusElement->setValueOptions($statesForSelections);
86 86
         
87
-        $job = $params->job ? $jobRepository->find($params->job)  : null;
87
+        $job = $params->job ? $jobRepository->find($params->job) : null;
88 88
         $paginator = $this->paginator('Applications');
89 89
 
90 90
         if ($job) {
91
-            $params['job_title'] = '[' . $job->getApplyId() . '] ' . $job->getTitle();
91
+            $params['job_title'] = '['.$job->getApplyId().'] '.$job->getTitle();
92 92
         }
93 93
 
94 94
         $form->bind($params);
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
 
151 151
 
152 152
         
153
-        $format=$this->params()->fromQuery('format');
153
+        $format = $this->params()->fromQuery('format');
154 154
 
155 155
         if ($application->isDraft()) {
156 156
             $list = false;
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
                    && ($network = $this->params()->fromQuery('network'))
279 279
                    && ($data    = $this->params()->fromPost('data'))
280 280
         ) {
281
-            $profileClass = '\\Auth\\Entity\\SocialProfiles\\' . $network;
281
+            $profileClass = '\\Auth\\Entity\\SocialProfiles\\'.$network;
282 282
             $profile      = new $profileClass();
283 283
             $profile->setData(\Zend\Json\Json::decode($data, \Zend\Json\Json::TYPE_ARRAY));
284 284
         } else {
@@ -397,7 +397,7 @@  discard block
 block discarded – undo
397 397
         
398 398
         $this->acl($application, 'forward');
399 399
         
400
-        $translator   = $services->get('translator');
400
+        $translator = $services->get('translator');
401 401
          
402 402
         if (!$emailAddress) {
403 403
             throw new \InvalidArgumentException('An email address must be supplied.');
@@ -438,7 +438,7 @@  discard block
 block discarded – undo
438 438
     {
439 439
         $id          = $this->params('id');
440 440
         $services    = $this->serviceLocator;
441
-        $repositories= $services->get('repositories');
441
+        $repositories = $services->get('repositories');
442 442
         $repository  = $repositories->get('Applications/Application');
443 443
         $application = $repository->find($id);
444 444
         
@@ -448,8 +448,8 @@  discard block
 block discarded – undo
448 448
 
449 449
         $this->acl($application, 'delete');
450 450
 
451
-        $events   = $services->get('Applications/Events');
452
-        $events->trigger(ApplicationEvent::EVENT_APPLICATION_PRE_DELETE, $this, [ 'application' => $application ]);
451
+        $events = $services->get('Applications/Events');
452
+        $events->trigger(ApplicationEvent::EVENT_APPLICATION_PRE_DELETE, $this, ['application' => $application]);
453 453
         
454 454
         $repositories->remove($application);
455 455
         
Please login to merge, or discard this patch.
module/Applications/src/Applications/Mail/NewApplication.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
      */
122 122
     public function setUser($user)
123 123
     {
124
-        $this->user=$user;
124
+        $this->user = $user;
125 125
         return $this;
126 126
     }
127 127
 }
Please login to merge, or discard this patch.
module/Auth/src/Auth/Controller/Plugin/SocialProfiles/LinkedIn.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
         return array(
136 136
             'year' => strval($xml->year),
137 137
             'month'=> isset($xml->month) ? strval($xml->month) : '01',
138
-            'day'  => isset($xml->day)   ? strval($xml->day)   : '01',
138
+            'day'  => isset($xml->day) ? strval($xml->day) : '01',
139 139
         );
140 140
     }
141 141
 }
Please login to merge, or discard this patch.
module/Auth/src/Auth/AuthenticationService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
             if ($this->hasIdentity() && ($id = $this->getIdentity())) {
62 62
                 $user = $this->getRepository()->find($id, \Doctrine\ODM\MongoDB\LockMode::NONE, null, ['allowDeactivated' => true]);
63 63
                 if (!$user) {
64
-                    throw new \OutOfBoundsException('Unknown user id: ' . $id);
64
+                    throw new \OutOfBoundsException('Unknown user id: '.$id);
65 65
                 }
66 66
                 $this->user = $user;
67 67
             } else {
Please login to merge, or discard this patch.
module/Auth/Module.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      */
37 37
     public function getConfig()
38 38
     {
39
-        return ModuleConfigLoader::load(__DIR__ . '/config');
39
+        return ModuleConfigLoader::load(__DIR__.'/config');
40 40
     }
41 41
 
42 42
     /**
@@ -52,19 +52,19 @@  discard block
 block discarded – undo
52 52
                 // This ensures the class from "addtional-providers" is loaded.
53 53
                 array(
54 54
                     'Hybrid_Providers_XING'
55
-                    => __DIR__ . '/../../vendor/hybridauth/hybridauth/additional-providers/hybridauth-xing/Providers/XING.php',
55
+                    => __DIR__.'/../../vendor/hybridauth/hybridauth/additional-providers/hybridauth-xing/Providers/XING.php',
56 56
                 ),
57 57
                 array(
58 58
                     'Hybrid_Providers_Github'
59
-                    => __DIR__ . '/../../vendor/hybridauth/hybridauth/additional-providers/hybridauth-github/Providers/GitHub.php',
59
+                    => __DIR__.'/../../vendor/hybridauth/hybridauth/additional-providers/hybridauth-github/Providers/GitHub.php',
60 60
                 ),
61 61
             ),
62 62
             'Zend\Loader\StandardAutoloader' => array(
63 63
                 'namespaces' => array(
64
-                    __NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
65
-                    'AuthTest' => __DIR__ . '/test/AuthTest',
66
-                    'Acl' => __DIR__ . '/src/Acl',
67
-                    'AclTest' => __DIR__ . '/test/AclTest',
64
+                    __NAMESPACE__ => __DIR__.'/src/'.__NAMESPACE__,
65
+                    'AuthTest' => __DIR__.'/test/AuthTest',
66
+                    'Acl' => __DIR__.'/src/Acl',
67
+                    'AclTest' => __DIR__.'/test/AclTest',
68 68
                 ),
69 69
             ),
70 70
         );
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
             
81 81
         $eventManager->attach(
82 82
             MvcEvent::EVENT_ROUTE,
83
-            function (MvcEvent $e) use ($services) {
83
+            function(MvcEvent $e) use ($services) {
84 84
                 /* @var $checkPermissionsListener \Acl\Listener\CheckPermissionsListener */
85 85
                 $checkPermissionsListener = $services->get('Auth/CheckPermissionsListener');
86 86
                 $checkPermissionsListener->onRoute($e);
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 
91 91
         $eventManager->attach(
92 92
             MvcEvent::EVENT_DISPATCH,
93
-            function (MvcEvent $e) use ($services) {
93
+            function(MvcEvent $e) use ($services) {
94 94
             /** @var CheckPermissionsListener $checkPermissionsListener */
95 95
                 $checkPermissionsListener = $services->get('Auth/CheckPermissionsListener');
96 96
                 $checkPermissionsListener->onDispatch($e);
Please login to merge, or discard this patch.
module/Core/src/Core/Factory/Form/Tree/SelectFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
      *
143 143
      * @return array
144 144
      */
145
-    protected function createValueOptions(NodeInterface $node, $allowSelectNodes = false, $isRoot=true)
145
+    protected function createValueOptions(NodeInterface $node, $allowSelectNodes = false, $isRoot = true)
146 146
     {
147 147
         $key    = $isRoot ? $node->getValue() : $node->getValueWithParents();
148 148
         $name   = $node->getName();
Please login to merge, or discard this patch.