Completed
Push — develop ( 60c2a6...7c4b2f )
by Carsten
61:42 queued 47:32
created
config/config.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@
 block discarded – undo
38 38
         $addModules = require $moduleFile;
39 39
         foreach ($addModules as $addModule) {
40 40
             if (strpos($addModule, '-') === 0) {
41
-                $remove = substr($addModule,1);
42
-                $modules = array_filter($modules, function ($elem) use ($remove) { return strcasecmp($elem,$remove); });
41
+                $remove = substr($addModule, 1);
42
+                $modules = array_filter($modules, function($elem) use ($remove) { return strcasecmp($elem, $remove); });
43 43
             }
44 44
             else {
45 45
                 if (!in_array($addModule, $modules)) {
Please login to merge, or discard this patch.
module/Applications/Module.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
             'Zend\Loader\StandardAutoloader' => array(
64 64
                 'namespaces' => array(
65 65
                     __NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
66
-                    __NAMESPACE__ . 'Test' => __DIR__ . '/test/' . __NAMESPACE__ .'Test',
66
+                    __NAMESPACE__ . 'Test' => __DIR__ . '/test/' . __NAMESPACE__ . 'Test',
67 67
                 ),
68 68
             ),
69 69
         );
Please login to merge, or discard this patch.
module/Applications/config/module.config.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
                 * for multiple paths.
24 24
                 * example https://github.com/doctrine/DoctrineORMModule
25 25
                 */
26
-               'paths' => array( __DIR__ . '/../src/Applications/Entity',
26
+               'paths' => array(__DIR__ . '/../src/Applications/Entity',
27 27
                                  __DIR__ . '/../../../module/Cv/src/Cv/Entity'),
28 28
             ),
29 29
         ),
@@ -44,10 +44,10 @@  discard block
 block discarded – undo
44 44
          * Settings for the application form.
45 45
          */
46 46
         'form' =>array(
47
-            'showCv' => true,              // show educations and work experiences in application form
48
-            'showCarbonCopy' => true,      // show 'send me my data in CC' in application form
49
-            'showSocialProfiles' => true,  // enables attaching social profiles to an application
50
-            'showAttachments' => true,     // enables file uploads for an application
47
+            'showCv' => true, // show educations and work experiences in application form
48
+            'showCarbonCopy' => true, // show 'send me my data in CC' in application form
49
+            'showSocialProfiles' => true, // enables attaching social profiles to an application
50
+            'showAttachments' => true, // enables file uploads for an application
51 51
         ),
52 52
         'dashboard' => array(
53 53
             'enabled' => true,
Please login to merge, or discard this patch.
module/Applications/src/Applications/Controller/ApplyController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
             if (!$application) {
89 89
                 throw new \RuntimeException('Invalid application id.');
90 90
             }
91
-            $action     = 'process';
91
+            $action = 'process';
92 92
 
93 93
 
94 94
 
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
         }
267 267
 
268 268
         if ('sendmail' == $this->params()->fromQuery('do')) {
269
-            $jobEntity         = $application->job;
269
+            $jobEntity = $application->job;
270 270
             ;
271 271
             $mailData = array(
272 272
                 'application' => $application,
Please login to merge, or discard this patch.
module/Applications/src/Applications/Controller/ConsoleController.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
                 
65 65
         echo "Generate keywords for $count applications ...\n";
66 66
         
67
-        $progress     = new ProgressBar($count);
67
+        $progress = new ProgressBar($count);
68 68
 
69 69
         /** @var PropertyToKeywords $filter */
70 70
         $filter = $services->get('filtermanager')->get('Core/Repository/PropertyToKeywords');
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     {
99 99
         $applications = $this->fetchApplications();
100 100
         $count = count($applications);
101
-        $i=0;
101
+        $i = 0;
102 102
         echo "Calculate rating for " . $count . " applications ...\n";
103 103
         
104 104
         $progress = new ProgressBar($count);
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
         $documentManager = $services->get('Core/DocumentManager');
133 133
 
134 134
         $count = count($applications);
135
-        $i=0;
135
+        $i = 0;
136 136
 
137 137
         echo  $count . " applications in Draft Mode and older than " . $days . " days will be deleted\n";
138 138
 
@@ -162,17 +162,17 @@  discard block
 block discarded – undo
162 162
 
163 163
         $table->appendRow(array('Module', 'Name', 'Description'));
164 164
 
165
-        $offset=strlen(getcwd())+1;
166
-        $links="";
167
-        $github='https://github.com/cross-solution/YAWIK/blob/master/';
165
+        $offset = strlen(getcwd()) + 1;
166
+        $links = "";
167
+        $github = 'https://github.com/cross-solution/YAWIK/blob/master/';
168 168
 
169 169
         foreach ($config['view_manager']['template_map'] as $key => $absolute_filename) {
170 170
             // strip the application_root plus an additional slash
171
-            $filename=substr(realpath($absolute_filename), $offset);
171
+            $filename = substr(realpath($absolute_filename), $offset);
172 172
             if (preg_match('~module/([^/]+)~', $filename, $match)) {
173
-                $module=$match[1];
173
+                $module = $match[1];
174 174
             } else {
175
-                $module="not found ($key)";
175
+                $module = "not found ($key)";
176 176
             }
177 177
 
178 178
             $viewModel = new ViewModel();
@@ -182,23 +182,23 @@  discard block
 block discarded – undo
182 182
             $row->appendColumn(new Column($module));
183 183
             if ($filename) {
184 184
                 $row->appendColumn(new Column('`' . $key . '`_'));
185
-                $links.='.. _'. $key .': '. $github.$filename .PHP_EOL;
185
+                $links .= '.. _' . $key . ': ' . $github . $filename . PHP_EOL;
186 186
             } else {
187 187
                 $row->appendColumn(new Column("WRONG CONFIGURATION"));
188 188
             }
189
-            $comment="";
189
+            $comment = "";
190 190
             if (file_exists($absolute_filename)) {
191
-                $src=file_get_contents($absolute_filename);
192
-                $comment="file exists";
191
+                $src = file_get_contents($absolute_filename);
192
+                $comment = "file exists";
193 193
                 if (preg_match("/{{rtd:\s*(.*)}}/", $src, $match)) {
194
-                    $comment=$match['1'];
194
+                    $comment = $match['1'];
195 195
                 }
196 196
             }
197 197
             $row->appendColumn(new Column($comment));
198 198
             $table->appendRow($row);
199 199
         }
200 200
 
201
-        echo $table.PHP_EOL;
201
+        echo $table . PHP_EOL;
202 202
         echo $links;
203 203
 
204 204
         return PHP_EOL;
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
     {
209 209
         echo "Loading applications... ";
210 210
 
211
-        $filter       = \Zend\Json\Json::decode($this->params('filter', '{}'), \Zend\Json\Json::TYPE_ARRAY);
211
+        $filter = \Zend\Json\Json::decode($this->params('filter', '{}'), \Zend\Json\Json::TYPE_ARRAY);
212 212
         $filter['$or'] = array(
213 213
             array('attachments' => array('$exists' => 1)),
214 214
             array('contact.image' => array('$exists' => 1)),
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
             return;
223 223
         }
224 224
         $progress = new ProgressBar($count);
225
-        $i=0;
225
+        $i = 0;
226 226
 
227 227
         foreach ($applications as $app) {
228 228
             $progress->update($i++, "Process $i / $count");
Please login to merge, or discard this patch.
module/Applications/src/Applications/Controller/IndexController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 
75 75
         $job = ($request->isPost() && !empty($jobId))
76 76
              ? $services->get('repositories')->get('Jobs/Job')->find($jobId)
77
-             : $services->get('repositories')->get('Jobs/Job')->findOneBy(array("applyId"=>(0 == $applyId)?$this->params('jobId'):$applyId));
77
+             : $services->get('repositories')->get('Jobs/Job')->findOneBy(array("applyId"=>(0 == $applyId) ? $this->params('jobId') : $applyId));
78 78
         
79 79
         
80 80
         if (!$job) {
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
 
281 281
          //default sorting
282 282
         if (!isset($params['sort'])) {
283
-            $params['sort']="-date";
283
+            $params['sort'] = "-date";
284 284
         }
285 285
         $params->count = 5;
286 286
         $this->paginationParams()->setParams('Applications\Index', $params);
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
             $jobEntity         = $entityApplication->job;
313 313
             $applicantEmail    = $entityApplication->contact->email;
314 314
             $organizationEmail = $jobEntity->contactEmail;
315
-            $mailAddress        = null;
315
+            $mailAddress = null;
316 316
             switch ($status == 'test') {
317 317
                 case 'company':
318 318
                     $mailAddress = $organizationEmail;
Please login to merge, or discard this patch.
module/Applications/src/Applications/Controller/ManageController.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         }
95 95
         $statusElement->setValueOptions($statesForSelections);
96 96
         
97
-        $job = $params->job ? $jobRepository->find($params->job)  : null;
97
+        $job = $params->job ? $jobRepository->find($params->job) : null;
98 98
         $paginator = $this->paginator('Applications/Application', $params);
99 99
 
100 100
         if ($job) {
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
         }
155 155
         
156 156
         
157
-        $format=$this->params()->fromQuery('format');
157
+        $format = $this->params()->fromQuery('format');
158 158
 
159 159
         if ($application->isDraft()) {
160 160
             $list = false;
@@ -327,11 +327,11 @@  discard block
 block discarded – undo
327 327
                 $key = 'mailRejectionText';
328 328
                 break;
329 329
         }
330
-        $mailText      = $settings->$key ? $settings->$key : '';
330
+        $mailText = $settings->$key ? $settings->$key : '';
331 331
         $this->notification()->success($mailText);
332 332
         $mail->setBody($mailText);
333 333
         $mailText = $mail->getBodyText();
334
-        $mailSubject   = sprintf(
334
+        $mailSubject = sprintf(
335 335
             $translator->translate('Your application dated %s'),
336 336
             strftime('%x', $application->dateCreated->getTimestamp())
337 337
         );
@@ -370,7 +370,7 @@  discard block
 block discarded – undo
370 370
         
371 371
         $this->acl($application, 'forward');
372 372
         
373
-        $translator   = $services->get('translator');
373
+        $translator = $services->get('translator');
374 374
          
375 375
         if (!$emailAddress) {
376 376
             throw new \InvalidArgumentException('An email address must be supplied.');
@@ -413,7 +413,7 @@  discard block
 block discarded – undo
413 413
     {
414 414
         $id          = $this->params('id');
415 415
         $services    = $this->getServiceLocator();
416
-        $repositories= $services->get('repositories');
416
+        $repositories = $services->get('repositories');
417 417
         $repository  = $repositories->get('Applications/Application');
418 418
         $application = $repository->find($id);
419 419
         
Please login to merge, or discard this patch.
module/Applications/src/Applications/Entity/Application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -446,7 +446,7 @@
 block discarded – undo
446 446
     public function getCv()
447 447
     {
448 448
         if (is_null($this->cv)) {
449
-            $this->cv= new Cv();
449
+            $this->cv = new Cv();
450 450
         }
451 451
         return $this->cv;
452 452
     }
Please login to merge, or discard this patch.
module/Applications/src/Applications/Entity/Attachment.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,6 +33,6 @@
 block discarded – undo
33 33
      */
34 34
     function getUri()
35 35
     {
36
-        return "/file/Applications.Attachment/" . $this->id . "/" .urlencode($this->name);
36
+        return "/file/Applications.Attachment/" . $this->id . "/" . urlencode($this->name);
37 37
     }
38 38
 }
Please login to merge, or discard this patch.