Completed
Push — master ( 75c0f6...61bb30 )
by Vitaly
02:40
created
src/query/Relational.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
     /**
96 96
      * Retrieve entities from database.
97 97
      *
98
-     * @param string|array $relationID Relation entity identifier or collection
98
+     * @param string $relationID Relation entity identifier or collection
99 99
      * @param mixed $relationValue Relation entity value
100 100
      * @param string $executor Query execution function name
101 101
      * @return mixed[] Collection of entity instances for this relation identifier
Please login to merge, or discard this patch.
src/Generator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 namespace samsoncms\api;
9 9
 
10 10
 use samson\activerecord\dbMySQLConnector;
11
-use samson\cms\CMSMaterial;
12 11
 use samsoncms\api\query\Generic;
13 12
 use samsonframework\orm\DatabaseInterface;
14 13
 
Please login to merge, or discard this patch.
src/CMS.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 require('generated/Structure.php');
9 9
 require('generated/StructureField.php');
10 10
 
11
-use samsonframework\core\RequestInterface;
12 11
 use samsonframework\core\ResourcesInterface;
13 12
 use samsonframework\core\SystemInterface;
14 13
 use samson\activerecord\TableRelation;
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
      * Module initialization.
61 61
      *
62 62
      * @param array $params Initialization parameters
63
-     * @return bool Initialization result
63
+     * @return boolean|null Initialization result
64 64
      */
65 65
     public function init(array $params = array())
66 66
     {
Please login to merge, or discard this patch.
src/Gallery.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
  */
8 8
 namespace samsoncms\api;
9 9
 
10
-use samson\cms\CMSGallery;
11 10
 use samsoncms\api\MaterialField;
12 11
 use samsonframework\orm\QueryInterface;
13 12
 
Please login to merge, or discard this patch.
src/field/Table.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     /**
69 69
      * Get field table as multidimensional array.
70 70
      *
71
-     * @return array Field table represented as array
71
+     * @return Row[] Field table represented as array
72 72
      */
73 73
     public function toArray()
74 74
     {
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
      * FieldsTable constructor.
178 178
      *
179 179
      * @param QueryInterface $query        Database query interface
180
-     * @param mixed          $navigationID Navigation identifier for table structure
180
+     * @param integer[]          $navigationID Navigation identifier for table structure
181 181
      * @param integer        $materialID   Table parent material identifier
182 182
      * @param string|null    $locale       Locale identifier
183 183
      */
Please login to merge, or discard this patch.
src/Material.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
  */
8 8
 namespace samsoncms\api\query;
9 9
 
10
-use samson\activerecord\dbQuery;
11 10
 use samsoncms\api\Field;
12 11
 use samsonframework\orm\ArgumentInterface;
13 12
 use samsonframework\orm\Condition;
Please login to merge, or discard this patch.
src/renderable/FieldsTable.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     /**
72 72
      * Render table row.
73 73
      *
74
-     * @param array $items Collection of rendered rows.
74
+     * @param string $items Collection of rendered rows.
75 75
      *
76 76
      * @return string Rendered HTML
77 77
      */
Please login to merge, or discard this patch.