Passed
Push — main ( 87fed9...27211a )
by Thierry
04:04
created
jaxon-examples/classes/namespace/ext/Test/Test.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,14 +8,14 @@
 block discarded – undo
8 8
     {
9 9
         $text = $isCaps ? 'HELLO WORLD!' : 'Hello World!';
10 10
         $this->response->assign('div2', 'innerHTML', $text);
11
-        if(($bNotify))
11
+        if (($bNotify))
12 12
             $this->response->dialog->success("div2 text is now $text");
13 13
     }
14 14
 
15 15
     public function setColor(string $sColor, bool $bNotify = true)
16 16
     {
17 17
         $this->response->assign('div2', 'style.color', $sColor);
18
-        if(($bNotify))
18
+        if (($bNotify))
19 19
             $this->response->dialog->success("div2 color is now $sColor");
20 20
     }
21 21
 
Please login to merge, or discard this patch.
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,15 +8,17 @@
 block discarded – undo
8 8
     {
9 9
         $text = $isCaps ? 'HELLO WORLD!' : 'Hello World!';
10 10
         $this->response->assign('div2', 'innerHTML', $text);
11
-        if(($bNotify))
12
-            $this->response->dialog->success("div2 text is now $text");
11
+        if(($bNotify)) {
12
+                    $this->response->dialog->success("div2 text is now $text");
13
+        }
13 14
     }
14 15
 
15 16
     public function setColor(string $sColor, bool $bNotify = true)
16 17
     {
17 18
         $this->response->assign('div2', 'style.color', $sColor);
18
-        if(($bNotify))
19
-            $this->response->dialog->success("div2 color is now $sColor");
19
+        if(($bNotify)) {
20
+                    $this->response->dialog->success("div2 color is now $sColor");
21
+        }
20 22
     }
21 23
 
22 24
     public function showDialog()
Please login to merge, or discard this patch.
jaxon-examples/classes/simple/app/Test/App.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,14 +10,14 @@
 block discarded – undo
10 10
             $text = 'Hello World!';
11 11
 
12 12
         $this->response->assign('div1', 'innerHTML', $text);
13
-        if(($bNotify))
13
+        if (($bNotify))
14 14
             $this->response->dialog->success("div1 text is now $text");
15 15
     }
16 16
 
17 17
     public function setColor(string $sColor, bool $bNotify = true)
18 18
     {
19 19
         $this->response->assign('div1', 'style.color', $sColor);
20
-        if(($bNotify))
20
+        if (($bNotify))
21 21
             $this->response->dialog->success("div1 color is now $sColor");
22 22
     }
23 23
 
Please login to merge, or discard this patch.
Braces   +11 added lines, -8 removed lines patch added patch discarded remove patch
@@ -4,21 +4,24 @@
 block discarded – undo
4 4
 {
5 5
     public function sayHello(bool $isCaps, bool $bNotify = true)
6 6
     {
7
-        if ($isCaps)
8
-            $text = 'HELLO WORLD!';
9
-        else
10
-            $text = 'Hello World!';
7
+        if ($isCaps) {
8
+                    $text = 'HELLO WORLD!';
9
+        } else {
10
+                    $text = 'Hello World!';
11
+        }
11 12
 
12 13
         $this->response->assign('div1', 'innerHTML', $text);
13
-        if(($bNotify))
14
-            $this->response->dialog->success("div1 text is now $text");
14
+        if(($bNotify)) {
15
+                    $this->response->dialog->success("div1 text is now $text");
16
+        }
15 17
     }
16 18
 
17 19
     public function setColor(string $sColor, bool $bNotify = true)
18 20
     {
19 21
         $this->response->assign('div1', 'style.color', $sColor);
20
-        if(($bNotify))
21
-            $this->response->dialog->success("div1 color is now $sColor");
22
+        if(($bNotify)) {
23
+                    $this->response->dialog->success("div1 color is now $sColor");
24
+        }
22 25
     }
23 26
 
24 27
     public function showDialog()
Please login to merge, or discard this patch.
jaxon-examples/classes/simple/ext/Test/Ext.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,14 +10,14 @@
 block discarded – undo
10 10
             $text = 'Hello World!';
11 11
 
12 12
         $this->response->assign('div2', 'innerHTML', $text);
13
-        if(($bNotify))
13
+        if (($bNotify))
14 14
             $this->response->dialog->success("div2 text is now $text");
15 15
     }
16 16
 
17 17
     public function setColor(string $sColor, bool $bNotify = true)
18 18
     {
19 19
         $this->response->assign('div2', 'style.color', $sColor);
20
-        if(($bNotify))
20
+        if (($bNotify))
21 21
             $this->response->dialog->success("div2 color is now $sColor");
22 22
     }
23 23
 
Please login to merge, or discard this patch.
Braces   +11 added lines, -8 removed lines patch added patch discarded remove patch
@@ -4,21 +4,24 @@
 block discarded – undo
4 4
 {
5 5
     public function sayHello(bool $isCaps, bool $bNotify = true)
6 6
     {
7
-        if ($isCaps)
8
-            $text = 'HELLO WORLD!';
9
-        else
10
-            $text = 'Hello World!';
7
+        if ($isCaps) {
8
+                    $text = 'HELLO WORLD!';
9
+        } else {
10
+                    $text = 'Hello World!';
11
+        }
11 12
 
12 13
         $this->response->assign('div2', 'innerHTML', $text);
13
-        if(($bNotify))
14
-            $this->response->dialog->success("div2 text is now $text");
14
+        if(($bNotify)) {
15
+                    $this->response->dialog->success("div2 text is now $text");
16
+        }
15 17
     }
16 18
 
17 19
     public function setColor(string $sColor, bool $bNotify = true)
18 20
     {
19 21
         $this->response->assign('div2', 'style.color', $sColor);
20
-        if(($bNotify))
21
-            $this->response->dialog->success("div2 color is now $sColor");
22
+        if(($bNotify)) {
23
+                    $this->response->dialog->success("div2 color is now $sColor");
24
+        }
22 25
     }
23 26
 
24 27
     public function showDialog()
Please login to merge, or discard this patch.
jaxon-examples/classes/calculator/app/CalcFunc.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
             // Render the result component.
39 39
             $this->cl(Result::class)->render();
40 40
         }
41
-        catch(Exception $e)
41
+        catch (Exception $e)
42 42
         {
43 43
             $this->alert()->title('Error!!!')->error($e->getMessage());
44 44
         }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,8 +37,7 @@
 block discarded – undo
37 37
             $this->stash()->set('calculator.result', $result);
38 38
             // Render the result component.
39 39
             $this->cl(Result::class)->render();
40
-        }
41
-        catch(Exception $e)
40
+        } catch(Exception $e)
42 41
         {
43 42
             $this->alert()->title('Error!!!')->error($e->getMessage());
44 43
         }
Please login to merge, or discard this patch.
jaxon-examples/classes/calculator/lib/CalculatorService.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -20,26 +20,26 @@
 block discarded – undo
20 20
      */
21 21
     public function calculate(string $operator, string $operandA, string $operandB): mixed
22 22
     {
23
-        if(!in_array($operator, $this->operators))
23
+        if (!in_array($operator, $this->operators))
24 24
         {
25 25
             throw new Exception("$operator is not a valid operator.");
26 26
         }
27
-        if($operandA === '' || $operandB === '')
27
+        if ($operandA === '' || $operandB === '')
28 28
         {
29 29
             throw new Exception("The operands must not be empty.");
30 30
         }
31
-        if(!is_numeric($operandA))
31
+        if (!is_numeric($operandA))
32 32
         {
33 33
             throw new Exception("$operandA is not a valid operand.");
34 34
         }
35
-        if(!is_numeric($operandB))
35
+        if (!is_numeric($operandB))
36 36
         {
37 37
             throw new Exception("$operandB is not a valid operand.");
38 38
         }
39 39
 
40 40
         $operandA = intval($operandA);
41 41
         $operandB = intval($operandB);
42
-        if($operator === 'division' && $operandB === 0)
42
+        if ($operator === 'division' && $operandB === 0)
43 43
         {
44 44
             throw new Exception("Division by 0 is not allowed.");
45 45
         }
Please login to merge, or discard this patch.
jaxon-examples/examples/pagination-databag/code.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -10,25 +10,25 @@  discard block
 block discarded – undo
10 10
 {
11 11
     use PageDatabagTrait;
12 12
 
13
-   /**
14
-    * @inheritDoc
15
-    */
16
-   protected function bagName(): string
17
-   {
18
-       return 'page';
19
-   }
13
+    /**
14
+     * @inheritDoc
15
+     */
16
+    protected function bagName(): string
17
+    {
18
+        return 'page';
19
+    }
20 20
 
21
-   /**
22
-    * @inheritDoc
23
-    */
24
-   protected function bagAttr(): string
25
-   {
26
-       return 'number';
27
-   }
21
+    /**
22
+     * @inheritDoc
23
+     */
24
+    protected function bagAttr(): string
25
+    {
26
+        return 'number';
27
+    }
28 28
 
29
-   /**
30
-    * @inheritDoc
31
-    */
29
+    /**
30
+     * @inheritDoc
31
+     */
32 32
     protected function limit(): int
33 33
     {
34 34
         return 10;
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
         return 150;
43 43
     }
44 44
  
45
-   public function html():  string
45
+    public function html():  string
46 46
     {
47 47
         return '<div style="margin-bottom:10px;font-weight:bold;">' .
48 48
             $this->bag('page')->get('title') .
Please login to merge, or discard this patch.
jaxon-examples/examples/dialogs/page.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -81,11 +81,11 @@  discard block
 block discarded – undo
81 81
 
82 82
 <?php $this->block('content') ?>
83 83
                 <div class="row">
84
-<?php foreach($aLibraries as $id => $lib): ?>
84
+<?php foreach ($aLibraries as $id => $lib): ?>
85 85
                     <div class="col-md-12">
86 86
                         <?= $lib['name'] ?>
87 87
                     </div>
88
-<?php if(is_subclass_of($lib['class'], AlertInterface::class)): ?>
88
+<?php if (is_subclass_of($lib['class'], AlertInterface::class)): ?>
89 89
                     <div class="col-md-12" style="padding-bottom: 15px;">
90 90
                         <button type="button" class="btn btn-primary" <?php
91 91
                             echo attr()->click(rq(HelloWorld::class)->showSuccess($id, $lib['name'])) ?>>Success</button>
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
                             echo attr()->click(rq(HelloWorld::class)->showError($id, $lib['name'])) ?>>Error</button>
98 98
                     </div>
99 99
 <?php endif ?>
100
-<?php if(is_subclass_of($lib['class'], ConfirmInterface::class)): ?>
100
+<?php if (is_subclass_of($lib['class'], ConfirmInterface::class)): ?>
101 101
                     <div class="col-md-12" style="padding-bottom: 15px;">
102 102
                         <button type="button" class="btn btn-primary"
103 103
                             onclick="jaxon.confirm('<?= $id ?>', { title: 'Confirm', text: 'Really?' }, {
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
                             })" >Confirm</button>
107 107
                     </div>
108 108
 <?php endif ?>
109
-<?php if(is_subclass_of($lib['class'], ModalInterface::class)): ?>
109
+<?php if (is_subclass_of($lib['class'], ModalInterface::class)): ?>
110 110
                     <div class="col-md-12" style="padding-bottom: 15px;">
111 111
                         <button type="button" class="btn btn-primary" <?php
112 112
                             echo attr()->click(rq(HelloWorld::class)->showDialog($id, $lib['name'])) ?>>Modal</button>
Please login to merge, or discard this patch.
jaxon-examples/examples/pagination-component/code.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -4,17 +4,17 @@
 block discarded – undo
4 4
 
5 5
 class PageContent extends PageComponent
6 6
 {
7
-   /**
8
-    * @inheritDoc
9
-    */
7
+    /**
8
+     * @inheritDoc
9
+     */
10 10
     protected function limit(): int
11 11
     {
12 12
         return 10;
13 13
     }
14 14
 
15
-   /**
16
-    * @inheritDoc
17
-    */
15
+    /**
16
+     * @inheritDoc
17
+     */
18 18
     protected function count(): int
19 19
     {
20 20
         return 150;
Please login to merge, or discard this patch.
jaxon-examples/examples/html-attributes/code.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -4,23 +4,23 @@
 block discarded – undo
4 4
 
5 5
 class PageContent extends PageComponent
6 6
 {
7
-   /**
8
-    * @inheritDoc
9
-    */
10
-   protected function limit(): int
11
-   {
12
-       return 10;
13
-   }
7
+    /**
8
+     * @inheritDoc
9
+     */
10
+    protected function limit(): int
11
+    {
12
+        return 10;
13
+    }
14 14
 
15
-   /**
16
-    * @inheritDoc
17
-    */
18
-   protected function count(): int
19
-   {
20
-       return 150;
21
-   }
15
+    /**
16
+     * @inheritDoc
17
+     */
18
+    protected function count(): int
19
+    {
20
+        return 150;
21
+    }
22 22
 
23
-   public function html():  string
23
+    public function html():  string
24 24
     {
25 25
         return 'Showing page number ' . $this->currentPage();
26 26
     }
Please login to merge, or discard this patch.