Completed
Push — master ( 9c85df...39246a )
by Thierry
03:07
created
src/Traits/Autoload.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,6 @@
 block discarded – undo
19 19
 
20 20
 namespace Jaxon\Traits;
21 21
 
22
-use Jaxon\DI\Container;
23
-
24 22
 trait Autoload
25 23
 {
26 24
     /**
Please login to merge, or discard this patch.
src/Jaxon.php 2 patches
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -211,16 +211,16 @@  discard block
 block discarded – undo
211 211
      */
212 212
     public function getScript($bIncludeJs = false, $bIncludeCss = false)
213 213
     {
214
-        if(!$this->getOption('core.request.uri'))
214
+        if (!$this->getOption('core.request.uri'))
215 215
         {
216 216
             $this->setOption('core.request.uri', URI::detect());
217 217
         }
218 218
         $sCode = '';
219
-        if(($bIncludeCss))
219
+        if (($bIncludeCss))
220 220
         {
221 221
             $sCode .= $this->getPluginManager()->getCss() . "\n";
222 222
         }
223
-        if(($bIncludeJs))
223
+        if (($bIncludeJs))
224 224
         {
225 225
             $sCode .= $this->getPluginManager()->getJs() . "\n";
226 226
         }
@@ -291,7 +291,7 @@  discard block
 block discarded – undo
291 291
     public function processRequest()
292 292
     {
293 293
         // Check to see if headers have already been sent out, in which case we can't do our job
294
-        if(headers_sent($filename, $linenumber))
294
+        if (headers_sent($filename, $linenumber))
295 295
         {
296 296
             echo $this->trans('errors.output.already-sent', array(
297 297
                 'location' => $filename . ':' . $linenumber
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
         }
301 301
 
302 302
         // Check if there is a plugin to process this request
303
-        if(!$this->canProcessRequest())
303
+        if (!$this->canProcessRequest())
304 304
         {
305 305
             return;
306 306
         }
@@ -310,18 +310,18 @@  discard block
 block discarded – undo
310 310
         $xResponseManager = $this->getResponseManager();
311 311
 
312 312
         // Handle before processing event
313
-        if(isset($this->aProcessingEvents[self::PROCESSING_EVENT_BEFORE]))
313
+        if (isset($this->aProcessingEvents[self::PROCESSING_EVENT_BEFORE]))
314 314
         {
315 315
             $this->aProcessingEvents[self::PROCESSING_EVENT_BEFORE]->call(array(&$bEndRequest));
316 316
         }
317 317
 
318
-        if(!$bEndRequest)
318
+        if (!$bEndRequest)
319 319
         {
320 320
             try
321 321
             {
322 322
                 $mResult = $this->getPluginManager()->processRequest();
323 323
             }
324
-            catch(Exception $e)
324
+            catch (Exception $e)
325 325
             {
326 326
                 // An exception was thrown while processing the request.
327 327
                 // The request missed the corresponding handler function,
@@ -333,7 +333,7 @@  discard block
 block discarded – undo
333 333
                 $xResponseManager->debug($e->getMessage());
334 334
                 $mResult = false;
335 335
 
336
-                if($e instanceof \Jaxon\Exception\Error)
336
+                if ($e instanceof \Jaxon\Exception\Error)
337 337
                 {
338 338
                     $sEvent = self::PROCESSING_EVENT_INVALID;
339 339
                     $aParams = array($e->getMessage());
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
                     $aParams = array($e);
345 345
                 }
346 346
 
347
-                if(isset($this->aProcessingEvents[$sEvent]))
347
+                if (isset($this->aProcessingEvents[$sEvent]))
348 348
                 {
349 349
                     // Call the processing event
350 350
                     $this->aProcessingEvents[$sEvent]->call($aParams);
@@ -357,7 +357,7 @@  discard block
 block discarded – undo
357 357
             }
358 358
         }
359 359
         // Clean the processing buffer
360
-        if(($this->getOption('core.process.clean')))
360
+        if (($this->getOption('core.process.clean')))
361 361
         {
362 362
             $er = error_reporting(0);
363 363
             while (ob_get_level() > 0)
@@ -367,16 +367,16 @@  discard block
 block discarded – undo
367 367
             error_reporting($er);
368 368
         }
369 369
 
370
-        if($mResult === true)
370
+        if ($mResult === true)
371 371
         {
372 372
             // Handle after processing event
373
-            if(isset($this->aProcessingEvents[self::PROCESSING_EVENT_AFTER]))
373
+            if (isset($this->aProcessingEvents[self::PROCESSING_EVENT_AFTER]))
374 374
             {
375 375
                 $bEndRequest = false;
376 376
                 $this->aProcessingEvents[self::PROCESSING_EVENT_AFTER]->call(array($bEndRequest));
377 377
             }
378 378
             // If the called function returned no response, give the the global response instead
379
-            if($xResponseManager->hasNoResponse())
379
+            if ($xResponseManager->hasNoResponse())
380 380
             {
381 381
                 $xResponseManager->append($this->getResponse());
382 382
             }
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
 
385 385
         $xResponseManager->printDebug();
386 386
 
387
-        if(($this->getOption('core.process.exit')))
387
+        if (($this->getOption('core.process.exit')))
388 388
         {
389 389
             $xResponseManager->sendOutput();
390 390
             exit();
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -320,8 +320,7 @@  discard block
 block discarded – undo
320 320
             try
321 321
             {
322 322
                 $mResult = $this->getPluginManager()->processRequest();
323
-            }
324
-            catch(Exception $e)
323
+            } catch(Exception $e)
325 324
             {
326 325
                 // An exception was thrown while processing the request.
327 326
                 // The request missed the corresponding handler function,
@@ -337,8 +336,7 @@  discard block
 block discarded – undo
337 336
                 {
338 337
                     $sEvent = self::PROCESSING_EVENT_INVALID;
339 338
                     $aParams = array($e->getMessage());
340
-                }
341
-                else
339
+                } else
342 340
                 {
343 341
                     $sEvent = self::PROCESSING_EVENT_ERROR;
344 342
                     $aParams = array($e);
@@ -348,8 +346,7 @@  discard block
 block discarded – undo
348 346
                 {
349 347
                     // Call the processing event
350 348
                     $this->aProcessingEvents[$sEvent]->call($aParams);
351
-                }
352
-                else
349
+                } else
353 350
                 {
354 351
                     // The exception is not to be processed here.
355 352
                     throw $e;
Please login to merge, or discard this patch.
src/Response/Plugin/JQuery/Dom/Element.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,11 +58,11 @@  discard block
 block discarded – undo
58 58
         $this->aCalls = [];
59 59
 
60 60
         $jQueryNs = jaxon()->getOption('core.jquery.no_conflict', false) ? 'jQuery' : '$';
61
-        if(!$sSelector)
61
+        if (!$sSelector)
62 62
         {
63 63
             $this->sSelector = "$jQueryNs(this)"; // If an empty selector is given, use javascript "this" instead
64 64
         }
65
-        elseif(($sContext))
65
+        elseif (($sContext))
66 66
         {
67 67
             $this->sSelector = "$jQueryNs('" . $sSelector . "', $jQueryNs('" . $sContext . "'))";
68 68
         }
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
      */
119 119
     public function getScript()
120 120
     {
121
-        if(count($this->aCalls) == 0)
121
+        if (count($this->aCalls) == 0)
122 122
         {
123 123
             return $this->sSelector;
124 124
         }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -57,12 +57,10 @@
 block discarded – undo
57 57
         if(!$sSelector)
58 58
         {
59 59
             $this->sSelector = "$jQueryNs(this)"; // If an empty selector is given, use javascript "this" instead
60
-        }
61
-        elseif(($sContext))
60
+        } elseif(($sContext))
62 61
         {
63 62
             $this->sSelector = "$jQueryNs('" . $sSelector . "', $jQueryNs('" . $sContext . "'))";
64
-        }
65
-        else
63
+        } else
66 64
         {
67 65
             $this->sSelector = "$jQueryNs('" . $sSelector . "')";
68 66
         }
Please login to merge, or discard this patch.
src/Utils/Template/Renderer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     public function render($sPath, array $aVars = [])
28 28
     {
29 29
         // Make the template vars available as attributes
30
-        foreach($aVars as $sName => $xValue)
30
+        foreach ($aVars as $sName => $xValue)
31 31
         {
32 32
             $sName = (string)$sName;
33 33
             $this->$sName = $xValue;
Please login to merge, or discard this patch.
src/Utils/Config/Config.php 1 patch
Spacing   +9 added lines, -10 removed lines patch added patch discarded remove patch
@@ -50,14 +50,14 @@  discard block
 block discarded – undo
50 50
         $sPrefix = trim((string)$sPrefix);
51 51
         $nDepth = intval($nDepth);
52 52
         // Check the max depth
53
-        if($nDepth < 0 || $nDepth > 9)
53
+        if ($nDepth < 0 || $nDepth > 9)
54 54
         {
55 55
             throw new \Jaxon\Exception\Config\Data(jaxon_trans('config.errors.data.depth',
56 56
                 array('key' => $sPrefix, 'depth' => $nDepth)));
57 57
         }
58
-        foreach($aOptions as $sName => $xOption)
58
+        foreach ($aOptions as $sName => $xOption)
59 59
         {
60
-            if(is_int($sName))
60
+            if (is_int($sName))
61 61
             {
62 62
                 continue;
63 63
             }
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
             // Save the value of this option
68 68
             $this->aOptions[$sFullName] = $xOption;
69 69
             // Save the values of its sub-options
70
-            if(is_array($xOption))
70
+            if (is_array($xOption))
71 71
             {
72 72
                 // Recursively read the options in the array
73 73
                 $this->_setOptions($xOption, $sFullName, $nDepth + 1);
@@ -89,9 +89,9 @@  discard block
 block discarded – undo
89 89
         $aKeys = explode('.', (string)$sKeys);
90 90
         foreach ($aKeys as $sKey)
91 91
         {
92
-            if(($sKey))
92
+            if (($sKey))
93 93
             {
94
-                if(!array_key_exists($sKey, $aOptions) || !is_array($aOptions[$sKey]))
94
+                if (!array_key_exists($sKey, $aOptions) || !is_array($aOptions[$sKey]))
95 95
                 {
96 96
                     return;
97 97
                 }
@@ -139,13 +139,12 @@  discard block
 block discarded – undo
139 139
         $sPrefix = rtrim($sPrefix, '.') . '.';
140 140
         $sPrefixLen = strlen($sPrefix);
141 141
         $aOptions = [];
142
-        foreach($this->aOptions as $sName => $xValue)
142
+        foreach ($this->aOptions as $sName => $xValue)
143 143
         {
144
-            if(substr($sName, 0, $sPrefixLen) == $sPrefix)
144
+            if (substr($sName, 0, $sPrefixLen) == $sPrefix)
145 145
             {
146 146
                 $iNextDotPos = strpos($sName, '.', $sPrefixLen);
147
-                $sOptionName = $iNextDotPos === false ? substr($sName, $sPrefixLen) :
148
-                    substr($sName, $sPrefixLen, $iNextDotPos - $sPrefixLen);
147
+                $sOptionName = $iNextDotPos === false ? substr($sName, $sPrefixLen) : substr($sName, $sPrefixLen, $iNextDotPos - $sPrefixLen);
149 148
                 $aOptions[$sOptionName] = $sPrefix . $sOptionName;
150 149
             }
151 150
         }
Please login to merge, or discard this patch.
src/Plugin/Manager.php 2 patches
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -223,13 +223,11 @@  discard block
 block discarded – undo
223 223
         {
224 224
             // The name of a request plugin is used as key in the plugin table
225 225
             $this->aRequestPlugins[$xPlugin->getName()] = $xPlugin;
226
-        }
227
-        elseif($xPlugin instanceof Response)
226
+        } elseif($xPlugin instanceof Response)
228 227
         {
229 228
             // The name of a response plugin is used as key in the plugin table
230 229
             $this->aResponsePlugins[$xPlugin->getName()] = $xPlugin;
231
-        }
232
-        elseif(!$bIsConfirm && !$bIsAlert)
230
+        } elseif(!$bIsConfirm && !$bIsAlert)
233 231
         {
234 232
             throw new \Jaxon\Exception\Error($this->trans('errors.register.invalid', array('name' => get_class($xPlugin))));
235 233
         }
@@ -644,8 +642,7 @@  discard block
 block discarded – undo
644 642
                 'sJsOptions' => $this->getOption('js.app.options'),
645 643
                 'sUrl' => $sJsAppURI . $sOutFile,
646 644
             ));
647
-        }
648
-        else
645
+        } else
649 646
         {
650 647
             // The plugins scripts are wrapped with javascript tags
651 648
             $sScript = $this->render('jaxon::plugins/wrapper.js', array(
Please login to merge, or discard this patch.
Spacing   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -219,32 +219,32 @@  discard block
 block discarded – undo
219 219
     {
220 220
         $bIsAlert = ($xPlugin instanceof Dialogs\Interfaces\Alert);
221 221
         $bIsConfirm = ($xPlugin instanceof Dialogs\Interfaces\Confirm);
222
-        if($xPlugin instanceof Request)
222
+        if ($xPlugin instanceof Request)
223 223
         {
224 224
             // The name of a request plugin is used as key in the plugin table
225 225
             $this->aRequestPlugins[$xPlugin->getName()] = $xPlugin;
226 226
         }
227
-        elseif($xPlugin instanceof Response)
227
+        elseif ($xPlugin instanceof Response)
228 228
         {
229 229
             // The name of a response plugin is used as key in the plugin table
230 230
             $this->aResponsePlugins[$xPlugin->getName()] = $xPlugin;
231 231
         }
232
-        elseif(!$bIsConfirm && !$bIsAlert)
232
+        elseif (!$bIsConfirm && !$bIsAlert)
233 233
         {
234 234
             throw new \Jaxon\Exception\Error($this->trans('errors.register.invalid', array('name' => get_class($xPlugin))));
235 235
         }
236 236
         // This plugin implements the Alert interface
237
-        if($bIsAlert)
237
+        if ($bIsAlert)
238 238
         {
239 239
             $this->setAlert($xPlugin);
240 240
         }
241 241
         // This plugin implements the Confirm interface
242
-        if($bIsConfirm)
242
+        if ($bIsConfirm)
243 243
         {
244 244
             $this->setConfirm($xPlugin);
245 245
         }
246 246
         // Register the plugin as an event listener
247
-        if($xPlugin instanceof \Jaxon\Utils\Interfaces\EventListener)
247
+        if ($xPlugin instanceof \Jaxon\Utils\Interfaces\EventListener)
248 248
         {
249 249
             $this->addEventListener($xPlugin);
250 250
         }
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
     private function generateHash()
275 275
     {
276 276
         $sHash = $this->getVersion();
277
-        foreach($this->aPlugins as $xPlugin)
277
+        foreach ($this->aPlugins as $xPlugin)
278 278
         {
279 279
             $sHash .= $xPlugin->generateHash();
280 280
         }
@@ -291,9 +291,9 @@  discard block
 block discarded – undo
291 291
      */
292 292
     public function canProcessRequest()
293 293
     {
294
-        foreach($this->aRequestPlugins as $xPlugin)
294
+        foreach ($this->aRequestPlugins as $xPlugin)
295 295
         {
296
-            if($xPlugin->getName() != Jaxon::FILE_UPLOAD && $xPlugin->canProcessRequest())
296
+            if ($xPlugin->getName() != Jaxon::FILE_UPLOAD && $xPlugin->canProcessRequest())
297 297
             {
298 298
                 return true;
299 299
             }
@@ -312,12 +312,12 @@  discard block
 block discarded – undo
312 312
     public function processRequest()
313 313
     {
314 314
         $xUploadPlugin = $this->getRequestPlugin(Jaxon::FILE_UPLOAD);
315
-        foreach($this->aRequestPlugins as $xPlugin)
315
+        foreach ($this->aRequestPlugins as $xPlugin)
316 316
         {
317
-            if($xPlugin->getName() != Jaxon::FILE_UPLOAD && $xPlugin->canProcessRequest())
317
+            if ($xPlugin->getName() != Jaxon::FILE_UPLOAD && $xPlugin->canProcessRequest())
318 318
             {
319 319
                 // Process uploaded files
320
-                if($xUploadPlugin != null)
320
+                if ($xUploadPlugin != null)
321 321
                 {
322 322
                     $xUploadPlugin->processRequest();
323 323
                 }
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
      */
343 343
     public function register($sType, $sCallable, $aOptions)
344 344
     {
345
-        if(!key_exists($sType, $this->aRequestPlugins))
345
+        if (!key_exists($sType, $this->aRequestPlugins))
346 346
         {
347 347
             throw new \Jaxon\Exception\Error($this->trans('errors.register.plugin', ['name' => $sType]));
348 348
         }
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
      */
367 367
     private function getJsLibUri()
368 368
     {
369
-        if(!$this->hasOption('js.lib.uri'))
369
+        if (!$this->hasOption('js.lib.uri'))
370 370
         {
371 371
             // return 'https://cdn.jsdelivr.net/jaxon/1.2.0/';
372 372
             return 'https://cdn.jsdelivr.net/gh/jaxon-php/[email protected]/dist/';
@@ -389,7 +389,7 @@  discard block
 block discarded – undo
389 389
         // The jsDelivr CDN only hosts minified files
390 390
         // if(($this->getOption('js.app.minify')) || substr($this->getJsLibUri(), 0, $nLen) == $jsDelivrUri)
391 391
         // Starting from version 2.0.0 of the js lib, the jsDelivr CDN also hosts non minified files.
392
-        if(($this->getOption('js.app.minify')))
392
+        if (($this->getOption('js.app.minify')))
393 393
         {
394 394
             return '.min.js';
395 395
         }
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
         // Check config options
407 407
         // - The js.app.extern option must be set to true
408 408
         // - The js.app.uri and js.app.dir options must be set to non null values
409
-        if(!$this->getOption('js.app.extern') ||
409
+        if (!$this->getOption('js.app.extern') ||
410 410
             !$this->getOption('js.app.uri') ||
411 411
             !$this->getOption('js.app.dir'))
412 412
         {
@@ -415,7 +415,7 @@  discard block
 block discarded – undo
415 415
         // Check dir access
416 416
         // - The js.app.dir must be writable
417 417
         $sJsAppDir = $this->getOption('js.app.dir');
418
-        if(!is_dir($sJsAppDir) || !is_writable($sJsAppDir))
418
+        if (!is_dir($sJsAppDir) || !is_writable($sJsAppDir))
419 419
         {
420 420
             return false;
421 421
         }
@@ -429,7 +429,7 @@  discard block
 block discarded – undo
429 429
      */
430 430
     private function setTemplateCacheDir()
431 431
     {
432
-        if($this->hasOption('core.template.cache_dir'))
432
+        if ($this->hasOption('core.template.cache_dir'))
433 433
         {
434 434
             $this->setCacheDir($this->getOption('core.template.cache_dir'));
435 435
         }
@@ -451,7 +451,7 @@  discard block
 block discarded – undo
451 451
 
452 452
         // Add component files to the javascript file array;
453 453
         $aJsFiles = array($sJsCoreUrl);
454
-        if($this->getOption('core.debug.on'))
454
+        if ($this->getOption('core.debug.on'))
455 455
         {
456 456
             $aJsFiles[] = $sJsDebugUrl;
457 457
             $aJsFiles[] = $sJsLanguageUrl;
@@ -467,17 +467,17 @@  discard block
 block discarded – undo
467 467
             'sJsOptions' => $this->getOption('js.app.options'),
468 468
             'aUrls' => $aJsFiles,
469 469
         ));
470
-        foreach($this->aResponsePlugins as $xPlugin)
470
+        foreach ($this->aResponsePlugins as $xPlugin)
471 471
         {
472
-            if(($str = trim($xPlugin->getJs())))
472
+            if (($str = trim($xPlugin->getJs())))
473 473
             {
474 474
                 $sCode .= rtrim($str, " \n") . "\n";
475 475
             }
476 476
         }
477
-        foreach($this->aPackages as $sClass)
477
+        foreach ($this->aPackages as $sClass)
478 478
         {
479 479
             $xPackage = jaxon()->di()->get($sClass);
480
-            if(($str = trim($xPackage->js())))
480
+            if (($str = trim($xPackage->js())))
481 481
             {
482 482
                 $sCode .= rtrim($str, " \n") . "\n";
483 483
             }
@@ -496,17 +496,17 @@  discard block
 block discarded – undo
496 496
         $this->setTemplateCacheDir();
497 497
 
498 498
         $sCode = '';
499
-        foreach($this->aResponsePlugins as $xPlugin)
499
+        foreach ($this->aResponsePlugins as $xPlugin)
500 500
         {
501
-            if(($str = trim($xPlugin->getCss())))
501
+            if (($str = trim($xPlugin->getCss())))
502 502
             {
503 503
                 $sCode .= rtrim($str, " \n") . "\n";
504 504
             }
505 505
         }
506
-        foreach($this->aPackages as $sClass)
506
+        foreach ($this->aPackages as $sClass)
507 507
         {
508 508
             $xPackage = jaxon()->di()->get($sClass);
509
-            if(($str = trim($xPackage->css())))
509
+            if (($str = trim($xPackage->css())))
510 510
             {
511 511
                 $sCode .= rtrim($str, " \n") . "\n";
512 512
             }
@@ -570,17 +570,17 @@  discard block
 block discarded – undo
570 570
     private function getReadyScript()
571 571
     {
572 572
         $sPluginScript = '';
573
-        foreach($this->aResponsePlugins as $xPlugin)
573
+        foreach ($this->aResponsePlugins as $xPlugin)
574 574
         {
575
-            if(($str = trim($xPlugin->getScript())))
575
+            if (($str = trim($xPlugin->getScript())))
576 576
             {
577 577
                 $sPluginScript .= "\n" . trim($str, " \n");
578 578
             }
579 579
         }
580
-        foreach($this->aPackages as $sClass)
580
+        foreach ($this->aPackages as $sClass)
581 581
         {
582 582
             $xPackage = jaxon()->di()->get($sClass);
583
-            if(($str = trim($xPackage->ready())))
583
+            if (($str = trim($xPackage->ready())))
584 584
             {
585 585
                 $sPluginScript .= "\n" . trim($str, " \n");
586 586
             }
@@ -603,7 +603,7 @@  discard block
 block discarded – undo
603 603
     {
604 604
         // Get the config and plugins scripts
605 605
         $sScript = $this->getConfigScript() . "\n" . $this->getReadyScript() . "\n";
606
-        foreach($this->aRequestPlugins as $xPlugin)
606
+        foreach ($this->aRequestPlugins as $xPlugin)
607 607
         {
608 608
             $sScript .= "\n" . trim($xPlugin->getScript(), " \n");
609 609
         }
@@ -625,7 +625,7 @@  discard block
 block discarded – undo
625 625
         // Set the template engine cache dir
626 626
         $this->setTemplateCacheDir();
627 627
 
628
-        if($this->canExportJavascript())
628
+        if ($this->canExportJavascript())
629 629
         {
630 630
             $sJsAppURI = rtrim($this->getOption('js.app.uri'), '/') . '/';
631 631
             $sJsAppDir = rtrim($this->getOption('js.app.dir'), '/') . '/';
@@ -634,13 +634,13 @@  discard block
 block discarded – undo
634 634
             $sHash = $this->generateHash();
635 635
             $sOutFile = $sHash . '.js';
636 636
             $sMinFile = $sHash . '.min.js';
637
-            if(!is_file($sJsAppDir . $sOutFile))
637
+            if (!is_file($sJsAppDir . $sOutFile))
638 638
             {
639 639
                 file_put_contents($sJsAppDir . $sOutFile, $this->getAllScripts());
640 640
             }
641
-            if(($this->getOption('js.app.minify')) && !is_file($sJsAppDir . $sMinFile))
641
+            if (($this->getOption('js.app.minify')) && !is_file($sJsAppDir . $sMinFile))
642 642
             {
643
-                if(($this->minify($sJsAppDir . $sOutFile, $sJsAppDir . $sMinFile)))
643
+                if (($this->minify($sJsAppDir . $sOutFile, $sJsAppDir . $sMinFile)))
644 644
                 {
645 645
                     $sOutFile = $sMinFile;
646 646
                 }
@@ -673,7 +673,7 @@  discard block
 block discarded – undo
673 673
      */
674 674
     public function getResponsePlugin($sName)
675 675
     {
676
-        if(array_key_exists($sName, $this->aResponsePlugins))
676
+        if (array_key_exists($sName, $this->aResponsePlugins))
677 677
         {
678 678
             return $this->aResponsePlugins[$sName];
679 679
         }
@@ -689,7 +689,7 @@  discard block
 block discarded – undo
689 689
      */
690 690
     public function getRequestPlugin($sName)
691 691
     {
692
-        if(array_key_exists($sName, $this->aRequestPlugins))
692
+        if (array_key_exists($sName, $this->aRequestPlugins))
693 693
         {
694 694
             return $this->aRequestPlugins[$sName];
695 695
         }
Please login to merge, or discard this patch.
src/Request/Support/UserFunction.php 2 patches
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,6 +62,9 @@  discard block
 block discarded – undo
62 62
      */
63 63
     private $aConfiguration;
64 64
 
65
+    /**
66
+     * @param string $sUserFunction
67
+     */
65 68
     public function __construct($sUserFunction)
66 69
     {
67 70
         $this->aConfiguration = [];
@@ -114,7 +117,7 @@  discard block
 block discarded – undo
114 117
     /**
115 118
      * Constructs and returns a <Jaxon\Request\Request> object which is capable of generating the javascript call to invoke this jaxon enabled function
116 119
      *
117
-     * @return Jaxon\Request\Request
120
+     * @return Request
118 121
      */
119 122
     public function generateRequest()
120 123
     {
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     public function getName()
78 78
     {
79 79
         // Do not use sAlias here!
80
-        if(is_array($this->sUserFunction))
80
+        if (is_array($this->sUserFunction))
81 81
         {
82 82
             return $this->sUserFunction[1];
83 83
         }
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      */
95 95
     public function configure($sName, $sValue)
96 96
     {
97
-        switch($sName)
97
+        switch ($sName)
98 98
         {
99 99
         case 'class': // The user function is a method in the given class
100 100
             $this->sUserFunction = [new $sValue, $this->sUserFunction];
@@ -151,12 +151,12 @@  discard block
 block discarded – undo
151 151
      */
152 152
     public function call($aArgs = [])
153 153
     {
154
-        if(($this->sInclude))
154
+        if (($this->sInclude))
155 155
         {
156 156
             require_once $this->sInclude;
157 157
         }
158 158
         $response = call_user_func_array($this->sUserFunction, $aArgs);
159
-        if(($response))
159
+        if (($response))
160 160
         {
161 161
             $this->getResponseManager()->append($response);
162 162
         }
Please login to merge, or discard this patch.
src/Plugin/Dialogs/Confirm.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      */
23 23
     public function confirm($question, $yesScript, $noScript)
24 24
     {
25
-        if(!$noScript)
25
+        if (!$noScript)
26 26
         {
27 27
             return 'if(confirm(' . $question . ')){' . $yesScript . ';}';
28 28
         }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,7 @@
 block discarded – undo
25 25
         if(!$noScript)
26 26
         {
27 27
             return 'if(confirm(' . $question . ')){' . $yesScript . ';}';
28
-        }
29
-        else
28
+        } else
30 29
         {
31 30
             return 'if(confirm(' . $question . ')){' . $yesScript . ';}else{' . $noScript . ';}';
32 31
         }
Please login to merge, or discard this patch.
src/Plugin/Dialogs/Alert.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      */
27 27
     protected function alert($message, $title)
28 28
     {
29
-        if($this->getReturn())
29
+        if ($this->getReturn())
30 30
         {
31 31
             return 'alert(' . $message . ')';
32 32
         }
Please login to merge, or discard this patch.