@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | * column. Can contain a relation name in dot notation, which will automatically join |
61 | 61 | * the necessary tables (e.g. "Comments.Name" to join the "Comments" has-many relationship and |
62 | 62 | * search the "Name" column when applying this filter to a SiteTree class). |
63 | - * @param mixed $value |
|
63 | + * @param string $value |
|
64 | 64 | * @param array $modifiers |
65 | 65 | */ |
66 | 66 | public function __construct($fullName = null, $value = false, array $modifiers = array()) { |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | /** |
141 | 141 | * Gets supported modifiers for this filter |
142 | 142 | * |
143 | - * @return array |
|
143 | + * @return string[] |
|
144 | 144 | */ |
145 | 145 | public function getSupportedModifiers() |
146 | 146 | { |
@@ -321,7 +321,7 @@ discard block |
||
321 | 321 | /** |
322 | 322 | * Determines case sensitivity based on {@link getModifiers()}. |
323 | 323 | * |
324 | - * @return Mixed TRUE or FALSE to enforce sensitivity, NULL to use field collation. |
|
324 | + * @return boolean|null TRUE or FALSE to enforce sensitivity, NULL to use field collation. |
|
325 | 325 | */ |
326 | 326 | protected function getCaseSensitive() { |
327 | 327 | $modifiers = $this->getModifiers(); |