Completed
Push — master ( b4ab83...0f95d0 )
by Mikołaj
05:24
created
app/module/Pages/One/Admin/EditModel.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
     /**
10 10
      * Update article by id.
11 11
      * 
12
-     * @param array $data
13 12
      * 
14 13
      * @return int
15 14
      */
Please login to merge, or discard this patch.
app/module/Pages/One/Model.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      * @param array $path
13 13
      * @param array $pages
14 14
      * 
15
-     * @return int|bool
15
+     * @return integer
16 16
      */
17 17
     public function getPageIdByPath(array $path, array $pages)
18 18
     {
Please login to merge, or discard this patch.
app/module/Pages/Roll/Admin/Model.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     /**
42 42
      * Returns total number of pages items.
43 43
      * 
44
-     * @param array|string $where
44
+     * @param string $where
45 45
      * 
46 46
      * @return int
47 47
      */
Please login to merge, or discard this patch.
app/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.
app/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.
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.
app/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.
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.
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.