Completed
Push — master ( 263ae6...9a19e6 )
by Mikołaj
02:44
created
src/install/DataGenerator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -88,6 +88,9 @@
 block discarded – undo
88 88
         return $sText;
89 89
     }
90 90
 
91
+    /**
92
+     * @return string
93
+     */
91 94
     public function clearDiacritics($sText)
92 95
     {
93 96
         $aReplacePL = array(
Please login to merge, or discard this patch.
src/module/Galleries/Roll/Model.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
     /**
10 10
      * Returns total number of galleries items.
11 11
      *
12
-     * @param array|string $where
12
+     * @param string $where
13 13
      *
14 14
      * @return int
15 15
      */
Please login to merge, or discard this patch.
src/install/config.example/modules.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,16 +1,16 @@
 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
-  'Pages' => 1,
13
-  'Users' => 1,
14
-  'Tools' => 1,
15
-  '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
+    'Pages' => 1,
13
+    'Users' => 1,
14
+    'Tools' => 1,
15
+    'Search' => 0,
16 16
 );
Please login to merge, or discard this patch.
src/install/config.example/site.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
-  'front_theme' => 'front_theme_value',
5
-  'admin_theme' => 'admin_theme_value',
6
-  'general_name' => 'general_name_value',
7
-  'debug' => 'debug_value',
4
+    'front_theme' => 'front_theme_value',
5
+    'admin_theme' => 'admin_theme_value',
6
+    'general_name' => 'general_name_value',
7
+    'debug' => 'debug_value',
8 8
 );
Please login to merge, or discard this patch.
src/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/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.
src/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/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/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.