Completed
Push — master ( eff497...5cda0a )
by Vitaly
02:31
created
src/dbMySQL.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      * @param string $field Object field name
37 37
      * @param string $type Database column name
38 38
      *
39
-     * @return bool True if database table has field or field has been created
39
+     * @return boolean|null True if database table has field or field has been created
40 40
      */
41 41
     public function createField($object, $table, $field, $type = 'INT')
42 42
     {
@@ -123,6 +123,7 @@  discard block
 block discarded – undo
123 123
 
124 124
     /**
125 125
      * @see idb::find()
126
+     * @param string $class_name
126 127
      */
127 128
     public function & find($class_name, dbQuery $query)
128 129
     {
@@ -465,7 +466,6 @@  discard block
 block discarded – undo
465 466
     /**
466 467
      * Create object instance by specified parameters
467 468
      * @param string $className Object class name
468
-     * @param RelationData $metaData Object metadata for creation and filling
469 469
      * @param array $dbData Database record with object data
470 470
      *
471 471
      * @return idbRecord Database record object instance
Please login to merge, or discard this patch.
src/dbMySQLConnector.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
     /**
90 90
      * Генератор описания классов и функций для работы с таблицами БД
91 91
      *
92
-     * @return string Код на PHP для динамического создания классов и функций обращения к ним
92
+     * @return string[] Код на PHP для динамического создания классов и функций обращения к ним
93 93
      */
94 94
     public function classes($class_data, $class_name, $table_name = NULL, array $db_relations = NULL)
95 95
     {
Please login to merge, or discard this patch.
src/RelationData.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 	/**
37 37
 	 * Constructor	  
38 38
 	 * @param string  $base_class	    Base class in relation
39
-	 * @param string  $table_name	    Name/alias of table in relation
39
+	 * @param string  $table_name_simple	    Name/alias of table in relation
40 40
 	 * @param string  $relation_class   Classname that has to be created on joining
41 41
      * @param boolean $ignore           Flag for not creating object instances for this class
42 42
 	 */
Please login to merge, or discard this patch.