Completed
Push — master ( 0ea48b...a03b7c )
by Mikołaj
03:03
created
src/module/Users/One/Login/View.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -7,6 +7,9 @@
 block discarded – undo
7 7
 
8 8
 class View extends FrontView
9 9
 {
10
+    /**
11
+     * @param integer|null $status
12
+     */
10 13
     public function form($formData, $status)
11 14
     {
12 15
         $this->formData = $formData;
Please login to merge, or discard this patch.
src/module/Users/Roll/Admin/Model.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      *
12 12
      * @param int   $limit
13 13
      * @param int   $onPage
14
-     * @param array $orderBy
14
+     * @param string[] $orderBy
15 15
      *
16 16
      * @return array
17 17
      */
Please login to merge, or discard this patch.
src/defines.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -4,18 +4,18 @@  discard block
 block discarded – undo
4 4
 define('VER_NAME', '0.11.0');
5 5
 define('NAME', 'rudolf');
6 6
 
7
-define('APP_ROOT',      dirname(__DIR__));
8
-define('CORE_ROOT',     APP_ROOT.'/core');
9
-define('MODULES_ROOT',  APP_ROOT.'/src/module');
7
+define('APP_ROOT', dirname(__DIR__));
8
+define('CORE_ROOT', APP_ROOT.'/core');
9
+define('MODULES_ROOT', APP_ROOT.'/src/module');
10 10
 
11
-define('CONFIG_ROOT',   APP_ROOT.'/config');
12
-define('TEMP_ROOT',     APP_ROOT.'/temp');
13
-define('LOG_ROOT',      APP_ROOT.'/log');
11
+define('CONFIG_ROOT', APP_ROOT.'/config');
12
+define('TEMP_ROOT', APP_ROOT.'/temp');
13
+define('LOG_ROOT', APP_ROOT.'/log');
14 14
 
15
-define('CONTENT_ROOT',  WEB_ROOT.'/content');
16
-define('PLUGINS_ROOT',  CONTENT_ROOT.'/plugins');
17
-define('THEMES_ROOT',   CONTENT_ROOT.'/themes');
18
-define('UPLOADS_ROOT',  CONTENT_ROOT.'/uploads');
15
+define('CONTENT_ROOT', WEB_ROOT.'/content');
16
+define('PLUGINS_ROOT', CONTENT_ROOT.'/plugins');
17
+define('THEMES_ROOT', CONTENT_ROOT.'/themes');
18
+define('UPLOADS_ROOT', CONTENT_ROOT.'/uploads');
19 19
 
20 20
 if (dirname($_SERVER['SCRIPT_NAME']) == '/') {
21 21
     define('DIR', '');
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     define('DIR', dirname($_SERVER['SCRIPT_NAME']));
24 24
 }
25 25
 
26
-define('CONTENT',       DIR.'/content');
27
-define('PLUGINS',       CONTENT.'/plugins');
28
-define('THEMES',        CONTENT.'/themes');
29
-define('UPLOADS',       CONTENT.'/uploads');
26
+define('CONTENT', DIR.'/content');
27
+define('PLUGINS', CONTENT.'/plugins');
28
+define('THEMES', CONTENT.'/themes');
29
+define('UPLOADS', CONTENT.'/uploads');
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.