@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | /** |
| 167 | 167 | * Ensure that the query is ready to execute. |
| 168 | 168 | * |
| 169 | - * @param array|null $queriedColumns Any columns to filter the query by |
|
| 169 | + * @param string[] $queriedColumns Any columns to filter the query by |
|
| 170 | 170 | * @return SQLQuery The finalised sql query |
| 171 | 171 | */ |
| 172 | 172 | public function getFinalisedQuery($queriedColumns = null) { |
@@ -634,7 +634,7 @@ discard block |
||
| 634 | 634 | * mappings to the query object state. This has to be called |
| 635 | 635 | * in any overloaded {@link SearchFilter->apply()} methods manually. |
| 636 | 636 | * |
| 637 | - * @param String|array $relation The array/dot-syntax relation to follow |
|
| 637 | + * @param string $relation The array/dot-syntax relation to follow |
|
| 638 | 638 | * @return The model class of the related item |
| 639 | 639 | */ |
| 640 | 640 | public function applyRelation($relation) { |
@@ -812,6 +812,7 @@ discard block |
||
| 812 | 812 | |
| 813 | 813 | /** |
| 814 | 814 | * Set an arbitrary query parameter, that can be used by decorators to add additional meta-data to the query. |
| 815 | + * @param string $key |
|
| 815 | 816 | */ |
| 816 | 817 | public function getQueryParam($key) { |
| 817 | 818 | if(isset($this->queryParams[$key])) return $this->queryParams[$key]; |
@@ -846,6 +847,9 @@ discard block |
||
| 846 | 847 | */ |
| 847 | 848 | protected $whereQuery; |
| 848 | 849 | |
| 850 | + /** |
|
| 851 | + * @param string $connective |
|
| 852 | + */ |
|
| 849 | 853 | public function __construct(DataQuery $base, $connective) { |
| 850 | 854 | $this->dataClass = $base->dataClass; |
| 851 | 855 | $this->query = $base->query; |
@@ -855,6 +859,9 @@ discard block |
||
| 855 | 859 | $base->where($this); |
| 856 | 860 | } |
| 857 | 861 | |
| 862 | + /** |
|
| 863 | + * @param string $filter |
|
| 864 | + */ |
|
| 858 | 865 | public function where($filter) { |
| 859 | 866 | if($filter) { |
| 860 | 867 | $this->whereQuery->addWhere($filter); |
@@ -217,9 +217,8 @@ discard block |
||
| 217 | 217 | * Given the database configuration, this method will create the correct |
| 218 | 218 | * subclass of {@link SS_Database}. |
| 219 | 219 | * |
| 220 | - * @param array $database A map of options. The 'type' is the name of the subclass of SS_Database to use. For the |
|
| 220 | + * @param array $databaseConfig A map of options. The 'type' is the name of the subclass of SS_Database to use. For the |
|
| 221 | 221 | * rest of the options, see the specific class. |
| 222 | - * @param string $name identifier for the connection |
|
| 223 | 222 | * |
| 224 | 223 | * @return SS_Database |
| 225 | 224 | */ |
@@ -413,7 +412,7 @@ discard block |
||
| 413 | 412 | |
| 414 | 413 | /** |
| 415 | 414 | * Create a new table. |
| 416 | - * @param string $tableName The name of the table |
|
| 415 | + * @param string $table The name of the table |
|
| 417 | 416 | * @param array$fields A map of field names to field types |
| 418 | 417 | * @param array $indexes A map of indexes |
| 419 | 418 | * @param array $options An map of additional options. The available keys are as follows: |
@@ -500,6 +499,8 @@ discard block |
||
| 500 | 499 | |
| 501 | 500 | /** |
| 502 | 501 | * @deprecated since version 4.0 Use DB::require_field instead |
| 502 | + * @param string $field |
|
| 503 | + * @param string $spec |
|
| 503 | 504 | */ |
| 504 | 505 | public static function requireField($table, $field, $spec) { |
| 505 | 506 | Deprecation::notice('4.0', 'Use DB::require_field instead'); |
@@ -563,7 +564,7 @@ discard block |
||
| 563 | 564 | /** |
| 564 | 565 | * Checks a table's integrity and repairs it if necessary. |
| 565 | 566 | * |
| 566 | - * @param string $tableName The name of the table. |
|
| 567 | + * @param string $table The name of the table. |
|
| 567 | 568 | * @return boolean Return true if the table has integrity after the method is complete. |
| 568 | 569 | */ |
| 569 | 570 | public static function check_and_repair_table($table) { |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | * Return a date and time formatted as per a CMS user's settings. |
| 98 | 98 | * |
| 99 | 99 | * @param Member $member |
| 100 | - * @return boolean | string A time and date pair formatted as per user-defined settings. |
|
| 100 | + * @return false|string | string A time and date pair formatted as per user-defined settings. |
|
| 101 | 101 | */ |
| 102 | 102 | public function FormatFromSettings($member = null) { |
| 103 | 103 | require_once 'Zend/Date.php'; |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | * Use {@link clear_mock_now()} to revert to the current system date. |
| 177 | 177 | * Caution: This sets a fixed date that doesn't increment with time. |
| 178 | 178 | * |
| 179 | - * @param SS_Datetime|string $datetime Either in object format, or as a SS_Datetime compatible string. |
|
| 179 | + * @param string $datetime Either in object format, or as a SS_Datetime compatible string. |
|
| 180 | 180 | */ |
| 181 | 181 | public static function set_mock_now($datetime) { |
| 182 | 182 | if($datetime instanceof SS_Datetime) { |
@@ -115,6 +115,9 @@ |
||
| 115 | 115 | $this->query("ALTER TABLE \"$tableName\" $alterations"); |
| 116 | 116 | } |
| 117 | 117 | |
| 118 | + /** |
|
| 119 | + * @param string $tableName |
|
| 120 | + */ |
|
| 118 | 121 | public function isView($tableName) { |
| 119 | 122 | $info = $this->query("SHOW /*!50002 FULL*/ TABLES LIKE '$tableName'")->record(); |
| 120 | 123 | return $info && strtoupper($info['Table_type']) == 'VIEW'; |
@@ -52,6 +52,9 @@ |
||
| 52 | 52 | return 0; |
| 53 | 53 | } |
| 54 | 54 | |
| 55 | + /** |
|
| 56 | + * @param integer $value |
|
| 57 | + */ |
|
| 55 | 58 | public function prepValueForDB($value) { |
| 56 | 59 | if($value === true) { |
| 57 | 60 | return 1; |
@@ -236,6 +236,8 @@ discard block |
||
| 236 | 236 | } |
| 237 | 237 | |
| 238 | 238 | /** |
| 239 | + * @param string $currency |
|
| 240 | + * @param string $locale |
|
| 239 | 241 | * @return string |
| 240 | 242 | */ |
| 241 | 243 | public function getSymbol($currency = null, $locale = null) { |
@@ -247,6 +249,8 @@ discard block |
||
| 247 | 249 | } |
| 248 | 250 | |
| 249 | 251 | /** |
| 252 | + * @param string $currency |
|
| 253 | + * @param string $locale |
|
| 250 | 254 | * @return string |
| 251 | 255 | */ |
| 252 | 256 | public function getShortName($currency = null, $locale = null) { |
@@ -257,6 +261,8 @@ discard block |
||
| 257 | 261 | } |
| 258 | 262 | |
| 259 | 263 | /** |
| 264 | + * @param string $currency |
|
| 265 | + * @param string $locale |
|
| 260 | 266 | * @return string |
| 261 | 267 | */ |
| 262 | 268 | public function getName($currency = null, $locale = null) { |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | |
| 18 | 18 | /** |
| 19 | 19 | * @param string $name |
| 20 | - * @param DataOject $object The object that this is primary key for (should have a relation with $name) |
|
| 20 | + * @param DataObject $object The object that this is primary key for (should have a relation with $name) |
|
| 21 | 21 | */ |
| 22 | 22 | public function __construct($name = null, $object) { |
| 23 | 23 | $this->object = $object; |
@@ -89,6 +89,9 @@ discard block |
||
| 89 | 89 | self::config()->backend = $backend; |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | + /** |
|
| 93 | + * @return string |
|
| 94 | + */ |
|
| 92 | 95 | public static function get_backend() { |
| 93 | 96 | return self::config()->backend; |
| 94 | 97 | } |
@@ -837,7 +840,7 @@ discard block |
||
| 837 | 840 | /** |
| 838 | 841 | * Generate patterns that will help to match filenames of cached images |
| 839 | 842 | * @param string $filename Filename of source image |
| 840 | - * @return array |
|
| 843 | + * @return string |
|
| 841 | 844 | */ |
| 842 | 845 | private function getFilenamePatterns($filename) { |
| 843 | 846 | $methodNames = $this->allMethodNames(true); |
@@ -993,7 +996,7 @@ discard block |
||
| 993 | 996 | |
| 994 | 997 | /** |
| 995 | 998 | * Get the orientation of this image. |
| 996 | - * @return ORIENTATION_SQUARE | ORIENTATION_PORTRAIT | ORIENTATION_LANDSCAPE |
|
| 999 | + * @return integer | ORIENTATION_PORTRAIT | ORIENTATION_LANDSCAPE |
|
| 997 | 1000 | */ |
| 998 | 1001 | public function getOrientation() { |
| 999 | 1002 | $width = $this->getWidth(); |
@@ -71,8 +71,8 @@ |
||
| 71 | 71 | /** |
| 72 | 72 | * resizeRatio |
| 73 | 73 | * |
| 74 | - * @param int $width |
|
| 75 | - * @param int $height |
|
| 74 | + * @param integer $maxWidth |
|
| 75 | + * @param integer $maxHeight |
|
| 76 | 76 | * @return Image_Backend |
| 77 | 77 | */ |
| 78 | 78 | public function resizeRatio($maxWidth, $maxHeight, $useAsMinimum = false); |