Completed
Push — master ( 246dde...1500ef )
by Mikołaj
05:33
created
src/app/install/config.example/auth.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return array(
4
-  'site_key' => 'site_key_value',
5
-  'session_expire' => '+1 month',
4
+    'site_key' => 'site_key_value',
5
+    'session_expire' => '+1 month',
6 6
 );
Please login to merge, or discard this patch.
src/app/install/config.example/modules.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return array(
4
-  'Albums' => 1,
5
-  'Articles' => 1,
6
-  'Dashboard' => 1,
7
-  'Galleries' => 1,
8
-  'Index' => 1,
9
-  'Koxy' => 0,
10
-  'Modules' => 1,
11
-  'Pages' => 1,
12
-  'Users' => 1,
13
-  'Tools' => 1,
14
-  'Search' => 0,
4
+    'Albums' => 1,
5
+    'Articles' => 1,
6
+    'Dashboard' => 1,
7
+    'Galleries' => 1,
8
+    'Index' => 1,
9
+    'Koxy' => 0,
10
+    'Modules' => 1,
11
+    'Pages' => 1,
12
+    'Users' => 1,
13
+    'Tools' => 1,
14
+    'Search' => 0,
15 15
 );
Please login to merge, or discard this patch.
src/app/component/Helpers/Navigation/MenuItemCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
             }
43 43
         }
44 44
 
45
-        usort($items, function ($a, $b) {
45
+        usort($items, function($a, $b) {
46 46
             return strcmp($a->getPosition(), $b->getPosition());
47 47
         });
48 48
 
Please login to merge, or discard this patch.
src/app/component/ErrorHandler/Resources/templates/layout.html.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -2,37 +2,37 @@
 block discarded – undo
2 2
 <html>
3 3
   <head>
4 4
     <meta charset="utf-8">
5
-    <title><?=$this->pageTitle;?></title>
6
-    <style><?=$this->pageStyle;?></style>
5
+    <title><?=$this->pageTitle; ?></title>
6
+    <style><?=$this->pageStyle; ?></style>
7 7
   </head>
8 8
   <body>
9 9
     <section class="wrapper">
10
-      <h1><?=$this->message;?></h1>
10
+      <h1><?=$this->message; ?></h1>
11 11
       <p>
12
-        <span class="file"><?=$this->description['file'];?></span>
13
-        <span class="line"><?=$this->description['line'];?></span> throws
14
-        <span class="class"><?=$this->description['class'];?></span>
12
+        <span class="file"><?=$this->description['file']; ?></span>
13
+        <span class="line"><?=$this->description['line']; ?></span> throws
14
+        <span class="class"><?=$this->description['class']; ?></span>
15 15
       </p>
16 16
 
17 17
       <section class="trace">
18 18
         <h2>/* Stack trace */</h2>
19 19
         <ol><?php foreach ($this->trace as $key => $v): ?> 
20 20
           <li title="check args">
21
-            <span class="file"><?=$v['file'];?></span>
22
-            <span class="line"><?=$v['line'];?></span>
23
-            <span class="class"><?=$v['class'];?></span>
24
-            <span class="type"><?=$v['type'];?></span>
25
-            <span class="function"><?=$v['function'];?></span>
26
-            <pre><?=$v['args'];?></pre>
21
+            <span class="file"><?=$v['file']; ?></span>
22
+            <span class="line"><?=$v['line']; ?></span>
23
+            <span class="class"><?=$v['class']; ?></span>
24
+            <span class="type"><?=$v['type']; ?></span>
25
+            <span class="function"><?=$v['function']; ?></span>
26
+            <pre><?=$v['args']; ?></pre>
27 27
           </li>
28
-          <?php endforeach;?>
28
+          <?php endforeach; ?>
29 29
         </ol>
30 30
       </section>
31 31
     </section>
32 32
     <footer class="footer">
33
-      <span><?=VER_NAME;?></span>
34
-      <span>&copy; <?=date('Y');?> <?=NAME;?></span>
33
+      <span><?=VER_NAME; ?></span>
34
+      <span>&copy; <?=date('Y'); ?> <?=NAME; ?></span>
35 35
     </footer>
36
-    <script><?=$this->pageScript;?></script>
36
+    <script><?=$this->pageScript; ?></script>
37 37
   </body>
38 38
 </html>
39 39
\ No newline at end of file
Please login to merge, or discard this patch.
src/app/component/Forms/Form.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
             $this->data = array_merge($mergeWith, $this->data);
65 65
         }
66 66
 
67
-        return array_map(function ($a) {
67
+        return array_map(function($a) {
68 68
             return htmlspecialchars(trim($a));
69 69
         }, $this->data);
70 70
     }
Please login to merge, or discard this patch.