@@ -804,7 +804,7 @@ discard block |
||
804 | 804 | * to this method. This will perform a primary key |
805 | 805 | * lookup on the table. |
806 | 806 | * |
807 | - * @param mixed $id |
|
807 | + * @param integer $id |
|
808 | 808 | * |
809 | 809 | * @return false|ORM false on error |
810 | 810 | */ |
@@ -1088,7 +1088,7 @@ discard block |
||
1088 | 1088 | * the alias to return the column as. |
1089 | 1089 | * |
1090 | 1090 | * @param string $column |
1091 | - * @param mixed $alias |
|
1091 | + * @param null|string $alias |
|
1092 | 1092 | * |
1093 | 1093 | * @return ORM |
1094 | 1094 | */ |
@@ -1105,7 +1105,7 @@ discard block |
||
1105 | 1105 | * the alias to return the column as. |
1106 | 1106 | * |
1107 | 1107 | * @param string $expr |
1108 | - * @param mixed $alias |
|
1108 | + * @param string|null $alias |
|
1109 | 1109 | * |
1110 | 1110 | * @return ORM |
1111 | 1111 | */ |
@@ -1394,7 +1394,7 @@ discard block |
||
1394 | 1394 | * Internal method to add a HAVING condition to the query |
1395 | 1395 | */ |
1396 | 1396 | /** |
1397 | - * @param string|array $column_name |
|
1397 | + * @param string $column_name |
|
1398 | 1398 | * @param string $separator |
1399 | 1399 | * @param mixed $value |
1400 | 1400 | * |
@@ -1409,7 +1409,7 @@ discard block |
||
1409 | 1409 | * Internal method to add a HAVING clause with multiple values (like IN and NOT IN) |
1410 | 1410 | */ |
1411 | 1411 | /** |
1412 | - * @param string|array $column_name |
|
1412 | + * @param string $column_name |
|
1413 | 1413 | * @param string $separator |
1414 | 1414 | * @param mixed $values |
1415 | 1415 | * |
@@ -1436,7 +1436,7 @@ discard block |
||
1436 | 1436 | /** |
1437 | 1437 | * Internal method to add a HAVING clause with no parameters(like IS NULL and IS NOT NULL) |
1438 | 1438 | * |
1439 | - * @param string|array $column_name |
|
1439 | + * @param string $column_name |
|
1440 | 1440 | * @param string $operator |
1441 | 1441 | * |
1442 | 1442 | * @return ORM |
@@ -1474,7 +1474,7 @@ discard block |
||
1474 | 1474 | /** |
1475 | 1475 | * Internal method to add a WHERE condition to the query |
1476 | 1476 | * |
1477 | - * @param string|array $column_name |
|
1477 | + * @param string $column_name |
|
1478 | 1478 | * @param string $separator |
1479 | 1479 | * @param mixed $value |
1480 | 1480 | * |
@@ -1488,7 +1488,7 @@ discard block |
||
1488 | 1488 | /** |
1489 | 1489 | * Add a WHERE clause with multiple values (like IN and NOT IN) |
1490 | 1490 | * |
1491 | - * @param string|array $column_name |
|
1491 | + * @param string $column_name |
|
1492 | 1492 | * @param string $separator |
1493 | 1493 | * @param mixed $values |
1494 | 1494 | * |
@@ -1643,7 +1643,7 @@ discard block |
||
1643 | 1643 | * |
1644 | 1644 | * @param mixed $value |
1645 | 1645 | * |
1646 | - * @return array |
|
1646 | + * @return string |
|
1647 | 1647 | */ |
1648 | 1648 | protected function _get_compound_id_column_values($value) |
1649 | 1649 | { |
@@ -1710,7 +1710,7 @@ discard block |
||
1710 | 1710 | * Add a WHERE column != value clause to your query. |
1711 | 1711 | * |
1712 | 1712 | * @param string $column_name |
1713 | - * @param mixed $value |
|
1713 | + * @param string $value |
|
1714 | 1714 | * |
1715 | 1715 | * @return $this|ORM |
1716 | 1716 | */ |
@@ -1814,7 +1814,7 @@ discard block |
||
1814 | 1814 | * Add a WHERE ... LIKE clause to your query. |
1815 | 1815 | * |
1816 | 1816 | * @param string $column_name |
1817 | - * @param mixed $value |
|
1817 | + * @param string $value |
|
1818 | 1818 | * |
1819 | 1819 | * @return $this|ORM |
1820 | 1820 | */ |
@@ -1827,7 +1827,7 @@ discard block |
||
1827 | 1827 | * Add where WHERE ... NOT LIKE clause to your query. |
1828 | 1828 | * |
1829 | 1829 | * @param string $column_name |
1830 | - * @param mixed $value |
|
1830 | + * @param string $value |
|
1831 | 1831 | * |
1832 | 1832 | * @return $this|ORM |
1833 | 1833 | */ |
@@ -1840,7 +1840,7 @@ discard block |
||
1840 | 1840 | * Add a WHERE ... > clause to your query |
1841 | 1841 | * |
1842 | 1842 | * @param string $column_name |
1843 | - * @param mixed $value |
|
1843 | + * @param integer $value |
|
1844 | 1844 | * |
1845 | 1845 | * @return $this|ORM |
1846 | 1846 | */ |
@@ -1853,7 +1853,7 @@ discard block |
||
1853 | 1853 | * Add a WHERE ... < clause to your query |
1854 | 1854 | * |
1855 | 1855 | * @param string $column_name |
1856 | - * @param mixed $value |
|
1856 | + * @param integer $value |
|
1857 | 1857 | * |
1858 | 1858 | * @return $this|ORM |
1859 | 1859 | */ |
@@ -1866,7 +1866,7 @@ discard block |
||
1866 | 1866 | * Add a WHERE ... >= clause to your query |
1867 | 1867 | * |
1868 | 1868 | * @param string $column_name |
1869 | - * @param mixed $value |
|
1869 | + * @param integer $value |
|
1870 | 1870 | * |
1871 | 1871 | * @return $this|ORM |
1872 | 1872 | */ |
@@ -1879,7 +1879,7 @@ discard block |
||
1879 | 1879 | * Add a WHERE ... <= clause to your query |
1880 | 1880 | * |
1881 | 1881 | * @param string $column_name |
1882 | - * @param mixed $value |
|
1882 | + * @param integer $value |
|
1883 | 1883 | * |
1884 | 1884 | * @return $this|ORM |
1885 | 1885 | */ |
@@ -1905,7 +1905,7 @@ discard block |
||
1905 | 1905 | * Add a WHERE ... NOT IN clause to your query |
1906 | 1906 | * |
1907 | 1907 | * @param string $column_name |
1908 | - * @param mixed $values |
|
1908 | + * @param string[] $values |
|
1909 | 1909 | * |
1910 | 1910 | * @return $this|ORM |
1911 | 1911 | */ |
@@ -1970,7 +1970,7 @@ discard block |
||
1970 | 1970 | /** |
1971 | 1971 | * Add an OFFSET to the query |
1972 | 1972 | * |
1973 | - * @param $offset |
|
1973 | + * @param integer $offset |
|
1974 | 1974 | * |
1975 | 1975 | * @return $this |
1976 | 1976 | */ |
@@ -2024,7 +2024,7 @@ discard block |
||
2024 | 2024 | /** |
2025 | 2025 | * Add an unquoted expression as an ORDER BY clause |
2026 | 2026 | * |
2027 | - * @param $clause |
|
2027 | + * @param string $clause |
|
2028 | 2028 | * |
2029 | 2029 | * @return $this |
2030 | 2030 | */ |
@@ -2101,7 +2101,7 @@ discard block |
||
2101 | 2101 | * Add a HAVING column != value clause to your query. |
2102 | 2102 | * |
2103 | 2103 | * @param string $column_name |
2104 | - * @param null $value |
|
2104 | + * @param string $value |
|
2105 | 2105 | * |
2106 | 2106 | * @return $this|ORM |
2107 | 2107 | */ |
@@ -2133,7 +2133,7 @@ discard block |
||
2133 | 2133 | * Add a HAVING ... LIKE clause to your query. |
2134 | 2134 | * |
2135 | 2135 | * @param string $column_name |
2136 | - * @param mixed $value |
|
2136 | + * @param string $value |
|
2137 | 2137 | * |
2138 | 2138 | * @return $this|ORM |
2139 | 2139 | */ |
@@ -2146,7 +2146,7 @@ discard block |
||
2146 | 2146 | * Add where HAVING ... NOT LIKE clause to your query. |
2147 | 2147 | * |
2148 | 2148 | * @param string $column_name |
2149 | - * @param mixed $value |
|
2149 | + * @param string $value |
|
2150 | 2150 | * |
2151 | 2151 | * @return $this|ORM |
2152 | 2152 | */ |
@@ -2159,7 +2159,7 @@ discard block |
||
2159 | 2159 | * Add a HAVING ... > clause to your query |
2160 | 2160 | * |
2161 | 2161 | * @param string $column_name |
2162 | - * @param mixed $value |
|
2162 | + * @param integer $value |
|
2163 | 2163 | * |
2164 | 2164 | * @return $this|ORM |
2165 | 2165 | */ |
@@ -2172,7 +2172,7 @@ discard block |
||
2172 | 2172 | * Add a HAVING ... < clause to your query |
2173 | 2173 | * |
2174 | 2174 | * @param string $column_name |
2175 | - * @param mixed $value |
|
2175 | + * @param integer $value |
|
2176 | 2176 | * |
2177 | 2177 | * @return $this|ORM |
2178 | 2178 | */ |
@@ -2185,7 +2185,7 @@ discard block |
||
2185 | 2185 | * Add a HAVING ... >= clause to your query |
2186 | 2186 | * |
2187 | 2187 | * @param string $column_name |
2188 | - * @param mixed $value |
|
2188 | + * @param integer $value |
|
2189 | 2189 | * |
2190 | 2190 | * @return $this|ORM |
2191 | 2191 | */ |
@@ -2198,7 +2198,7 @@ discard block |
||
2198 | 2198 | * Add a HAVING ... <= clause to your query |
2199 | 2199 | * |
2200 | 2200 | * @param string $column_name |
2201 | - * @param mixed $value |
|
2201 | + * @param integer $value |
|
2202 | 2202 | * |
2203 | 2203 | * @return $this|ORM |
2204 | 2204 | */ |
@@ -2211,7 +2211,7 @@ discard block |
||
2211 | 2211 | * Add a HAVING ... IN clause to your query |
2212 | 2212 | * |
2213 | 2213 | * @param string $column_name |
2214 | - * @param mixed $values |
|
2214 | + * @param string[] $values |
|
2215 | 2215 | * |
2216 | 2216 | * @return $this|ORM |
2217 | 2217 | */ |
@@ -2224,7 +2224,7 @@ discard block |
||
2224 | 2224 | * Add a HAVING ... NOT IN clause to your query |
2225 | 2225 | * |
2226 | 2226 | * @param string $column_name |
2227 | - * @param mixed $values |
|
2227 | + * @param string[] $values |
|
2228 | 2228 | * |
2229 | 2229 | * @return $this|ORM |
2230 | 2230 | */ |
@@ -2262,7 +2262,7 @@ discard block |
||
2262 | 2262 | * contain question mark placeholders, which will be bound |
2263 | 2263 | * to the parameters supplied in the second argument. |
2264 | 2264 | * |
2265 | - * @param $clause |
|
2265 | + * @param string $clause |
|
2266 | 2266 | * @param array $parameters |
2267 | 2267 | * |
2268 | 2268 | * @return $this|ORM |
@@ -2471,7 +2471,7 @@ discard block |
||
2471 | 2471 | * only adds the pieces if they are not empty. |
2472 | 2472 | * |
2473 | 2473 | * @param string $glue |
2474 | - * @param array $pieces |
|
2474 | + * @param string[] $pieces |
|
2475 | 2475 | * |
2476 | 2476 | * @return string |
2477 | 2477 | */ |
@@ -2560,7 +2560,7 @@ discard block |
||
2560 | 2560 | * @param null|string $table_name |
2561 | 2561 | * @param string $connection_name |
2562 | 2562 | * |
2563 | - * @return mixed|string |
|
2563 | + * @return string |
|
2564 | 2564 | */ |
2565 | 2565 | protected static function _create_cache_key($query, $parameters, $table_name = null, $connection_name = self::DEFAULT_CONNECTION) |
2566 | 2566 | { |