Completed
Push — master ( 22fd99...711149 )
by Nikita
07:16
created
src/Record.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -91,8 +91,6 @@
 block discarded – undo
91 91
      * Если идентификатор = FALSE - выполняеся создание объекта без его привязки к БД
92 92
      * Если идентификатор > 0 - выполняется поиск записи в БД и привязка к ней в случае нахождения
93 93
      *
94
-     * @param mixed $id Идентификатор объекта в БД
95
-     * @param string $className Имя класса
96 94
      */
97 95
     public function __construct($database = null)
98 96
     {
Please login to merge, or discard this patch.
src/Database.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      * @param int $port Database port(3306 by default)
41 41
      * @param string $driver Database driver for interaction(MySQL by default)
42 42
      * @param string $charset Database character set
43
-     * @return bool True if connection to database was successful
43
+     * @return boolean|null True if connection to database was successful
44 44
      */
45 45
     public function connect(
46 46
         $database,
@@ -104,6 +104,7 @@  discard block
 block discarded – undo
104 104
      * Proxy function for executing database fetching logic with exception,
105 105
      * error, profile handling
106 106
      * @param callback $fetcher Callback for fetching
107
+     * @param string|null $sql
107 108
      * @return mixed Fetching function result
108 109
      */
109 110
     private function executeFetcher($fetcher, $sql)
Please login to merge, or discard this patch.