Completed
Push — master ( 0f95d0...246dde )
by Mikołaj
03:39
created
src/app/module/Articles/routing.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     'artykuly/kategorie/<slug>(/|/page/<page>)?',
16 16
     'Rudolf\Modules\Articles\Category\One\Controller::getCategory',
17 17
     ['slug' => '[a-z0-9]+(?:-[a-z0-9]+)*',
18
-     'page' => '[1-9][0-9]*$', ],
18
+        'page' => '[1-9][0-9]*$', ],
19 19
     ['page' => 0]
20 20
 ));
21 21
 
@@ -24,8 +24,8 @@  discard block
 block discarded – undo
24 24
     'artykuly/<year>/<month>/<slug>(\/)?',
25 25
     'Rudolf\Modules\Articles\One\Controller::getOne',
26 26
     ['year' => '[0-9]{4}',
27
-     'month' => "(0[1-9]|[12]\d|3[01])",
28
-     'slug' => '[a-z0-9-]+',
27
+        'month' => "(0[1-9]|[12]\d|3[01])",
28
+        'slug' => '[a-z0-9-]+',
29 29
         // (0[1-9]|[12]\d|3[01]) with 0, like 05
30 30
         // ([1-9]|[12]\d|3[01]) without 0, like 5
31 31
     ]
Please login to merge, or discard this patch.
src/app/module/Albums/routing.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     'foto/kategorie/<slug>(/|/page/<page>)?',
16 16
     'Rudolf\Modules\Albums\Category\One\Controller::getCategory',
17 17
     ['slug' => '[a-z0-9]+(?:-[a-z0-9]+)*',
18
-     'page' => '[1-9][0-9]*$', ],
18
+        'page' => '[1-9][0-9]*$', ],
19 19
     ['page' => 0]
20 20
 ));
21 21
 
@@ -24,8 +24,8 @@  discard block
 block discarded – undo
24 24
     'foto/<year>/<month>/<slug>(\/)?',
25 25
     'Rudolf\Modules\Albums\One\Controller::getOne',
26 26
     ['year' => '[0-9]{4}',
27
-     'month' => "(0[1-9]|[12]\d|3[01])",
28
-     'slug' => '[a-z0-9-]+',
27
+        'month' => "(0[1-9]|[12]\d|3[01])",
28
+        'slug' => '[a-z0-9-]+',
29 29
         // (0[1-9]|[12]\d|3[01]) with 0, like 05
30 30
         // ([1-9]|[12]\d|3[01]) without 0, like 5
31 31
     ]
Please login to merge, or discard this patch.
src/app/install/config.example/database.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return array(
4
-  'engine' => 'engine_value',
5
-  'host' => 'host_value',
6
-  'database' => 'database_value',
7
-  'user' => 'user_value',
8
-  'pass' => 'pass_value',
9
-  'charset' => 'charset_value',
10
-  'prefix' => 'prefix_value',
4
+    'engine' => 'engine_value',
5
+    'host' => 'host_value',
6
+    'database' => 'database_value',
7
+    'user' => 'user_value',
8
+    'pass' => 'pass_value',
9
+    'charset' => 'charset_value',
10
+    'prefix' => 'prefix_value',
11 11
 );
Please login to merge, or discard this patch.
src/app/install/config.example/modules/dashboard.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return array(
4
-  'admin_path' => 'admin',
4
+    'admin_path' => 'admin',
5 5
 );
Please login to merge, or discard this patch.
src/app/install/config.example/modules/albums.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return array(
4
-  'on_page' => 10,
5
-  'nav_number' => 7,
6
-  'order' => 'DESC',
7
-  'sort' => 'id',
8
-  'path' => 'foto',
4
+    'on_page' => 10,
5
+    'nav_number' => 7,
6
+    'order' => 'DESC',
7
+    'sort' => 'id',
8
+    'path' => 'foto',
9 9
 );
Please login to merge, or discard this patch.
src/app/install/config.example/modules/articles.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return array(
4
-  'on_page' => 10,
5
-  'nav_number' => 7,
6
-  'order' => 'DESC',
7
-  'sort' => 'date',
8
-  'feed_title' => 'Rudolf Feed',
9
-  'feed_description' => 'Rudolf RSS canal',
10
-  'feed_link' => 'http://localhost/rss/',
11
-  'feed_site' => 'http://localhost',
4
+    'on_page' => 10,
5
+    'nav_number' => 7,
6
+    'order' => 'DESC',
7
+    'sort' => 'date',
8
+    'feed_title' => 'Rudolf Feed',
9
+    'feed_description' => 'Rudolf RSS canal',
10
+    'feed_link' => 'http://localhost/rss/',
11
+    'feed_site' => 'http://localhost',
12 12
 );
Please login to merge, or discard this patch.
src/app/install/config.example/modules/koxy.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return array(
4
-  'on_page' => 8,
5
-  'nav_number' => 7,
6
-  'order' => 'DESC',
7
-  'sort' => 'id',
8
-  'priority' => 2000,
4
+    'on_page' => 8,
5
+    'nav_number' => 7,
6
+    'order' => 'DESC',
7
+    'sort' => 'id',
8
+    'priority' => 2000,
9 9
 );
Please login to merge, or discard this patch.
src/app/install/config.example/modules/galleries.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
-  'path_root' => CONTENT_ROOT.'/galleries',
5
-  'path_web' => CONTENT.'/galleries',
4
+    'path_root' => CONTENT_ROOT.'/galleries',
5
+    'path_web' => CONTENT.'/galleries',
6 6
 );
Please login to merge, or discard this patch.
src/app/install/config.example/modules/index.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return array(
4
-  'on_page' => 10,
5
-  'nav_number' => 7,
6
-  'order' => 'DESC',
7
-  'sort' => 'date',
4
+    'on_page' => 10,
5
+    'nav_number' => 7,
6
+    'order' => 'DESC',
7
+    'sort' => 'date',
8 8
 );
Please login to merge, or discard this patch.