@@ -52,6 +52,7 @@ |
||
| 52 | 52 | |
| 53 | 53 | /** |
| 54 | 54 | * Parses a template and returns any translatable entities |
| 55 | + * @param string $template |
|
| 55 | 56 | */ |
| 56 | 57 | public static function GetTranslatables($template) |
| 57 | 58 | { |
@@ -178,7 +178,7 @@ |
||
| 178 | 178 | * |
| 179 | 179 | * Actually only one array argument is supported. |
| 180 | 180 | * |
| 181 | - * @param $f callback to apply |
|
| 181 | + * @param string $f callback to apply |
|
| 182 | 182 | * @param $array array |
| 183 | 183 | * @return array |
| 184 | 184 | */ |
@@ -745,7 +745,7 @@ |
||
| 745 | 745 | /** |
| 746 | 746 | * Returns item stored in list with index $key |
| 747 | 747 | * |
| 748 | - * @param mixed $offset |
|
| 748 | + * @param integer $offset |
|
| 749 | 749 | * @return DataObject |
| 750 | 750 | */ |
| 751 | 751 | public function offsetGet($offset) |
@@ -768,7 +768,7 @@ |
||
| 768 | 768 | * @param boolean $create Flag indicating whether the database should be created |
| 769 | 769 | * if it doesn't exist. If $create is false and the database doesn't exist |
| 770 | 770 | * then an error will be raised |
| 771 | - * @param int|boolean $errorLevel The level of error reporting to enable for the query, or false if no error |
|
| 771 | + * @param boolean $errorLevel The level of error reporting to enable for the query, or false if no error |
|
| 772 | 772 | * should be raised |
| 773 | 773 | * @return boolean Flag indicating success |
| 774 | 774 | */ |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | * - array('fields' => array('A','B','C'), 'type' => 'index/unique/fulltext'): This gives you full |
| 332 | 332 | * control over the index. |
| 333 | 333 | * @param boolean $hasAutoIncPK A flag indicating that the primary key on this table is an autoincrement type |
| 334 | - * @param array $options Create table options (ENGINE, etc.) |
|
| 334 | + * @param string|null $options Create table options (ENGINE, etc.) |
|
| 335 | 335 | * @param array|bool $extensions List of extensions |
| 336 | 336 | */ |
| 337 | 337 | public function requireTable( |
@@ -529,7 +529,7 @@ discard block |
||
| 529 | 529 | /** |
| 530 | 530 | * Given an index spec determines the index type |
| 531 | 531 | * |
| 532 | - * @param array|string $spec |
|
| 532 | + * @param string $spec |
|
| 533 | 533 | * @return string |
| 534 | 534 | */ |
| 535 | 535 | protected function determineIndexType($spec) |
@@ -630,7 +630,7 @@ discard block |
||
| 630 | 630 | * |
| 631 | 631 | * @param string $table The table name. |
| 632 | 632 | * @param string $field The field name. |
| 633 | - * @param array|string $spec The field specification. If passed in array syntax, the specific database |
|
| 633 | + * @param string $spec The field specification. If passed in array syntax, the specific database |
|
| 634 | 634 | * driver takes care of the ALTER TABLE syntax. If passed as a string, its assumed to |
| 635 | 635 | * be prepared as a direct SQL framgment ready for insertion into ALTER TABLE. In this case you'll |
| 636 | 636 | * need to take care of database abstraction in your DBField subclass. |
@@ -129,6 +129,9 @@ |
||
| 129 | 129 | $this->query("ALTER TABLE \"$tableName\" $alterations"); |
| 130 | 130 | } |
| 131 | 131 | |
| 132 | + /** |
|
| 133 | + * @param string $tableName |
|
| 134 | + */ |
|
| 132 | 135 | public function isView($tableName) |
| 133 | 136 | { |
| 134 | 137 | $info = $this->query("SHOW /*!50002 FULL*/ TABLES LIKE '$tableName'")->record(); |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | /** |
| 144 | 144 | * Gets the url to return to after build |
| 145 | 145 | * |
| 146 | - * @return string|null |
|
| 146 | + * @return string |
|
| 147 | 147 | */ |
| 148 | 148 | protected function getReturnURL() |
| 149 | 149 | { |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | /** |
| 176 | 176 | * Returns the timestamp of the time that the database was last built |
| 177 | 177 | * |
| 178 | - * @return string Returns the timestamp of the time that the database was |
|
| 178 | + * @return integer|null Returns the timestamp of the time that the database was |
|
| 179 | 179 | * last built |
| 180 | 180 | */ |
| 181 | 181 | public static function lastBuilt() |
@@ -88,10 +88,16 @@ |
||
| 88 | 88 | { |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | + /** |
|
| 92 | + * @param \SilverStripe\Security\Member|null $member |
|
| 93 | + */ |
|
| 91 | 94 | public function canEdit($member) |
| 92 | 95 | { |
| 93 | 96 | } |
| 94 | 97 | |
| 98 | + /** |
|
| 99 | + * @param \SilverStripe\Security\Member|null $member |
|
| 100 | + */ |
|
| 95 | 101 | public function canDelete($member) |
| 96 | 102 | { |
| 97 | 103 | } |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | * Returns a new DataList instance with the specified query parameter assigned |
| 180 | 180 | * |
| 181 | 181 | * @param string|array $keyOrArray Either the single key to set, or an array of key value pairs to set |
| 182 | - * @param mixed $val If $keyOrArray is not an array, this is the value to set |
|
| 182 | + * @param string $val If $keyOrArray is not an array, this is the value to set |
|
| 183 | 183 | * @return static |
| 184 | 184 | */ |
| 185 | 185 | public function setDataQueryParam($keyOrArray, $val = null) |
@@ -554,7 +554,7 @@ discard block |
||
| 554 | 554 | * Check if the given field specification could be interpreted as an unquoted relation name |
| 555 | 555 | * |
| 556 | 556 | * @param string $field |
| 557 | - * @return bool |
|
| 557 | + * @return integer |
|
| 558 | 558 | */ |
| 559 | 559 | protected function isValidRelationName($field) |
| 560 | 560 | { |
@@ -667,7 +667,7 @@ discard block |
||
| 667 | 667 | * @param int $order A numerical index to control the order that joins are added to the query; lower order values |
| 668 | 668 | * will cause the query to appear first. The default is 20, and joins created automatically by the |
| 669 | 669 | * ORM have a value of 10. |
| 670 | - * @param array $parameters Any additional parameters if the join is a parameterised subquery |
|
| 670 | + * @param string[] $parameters Any additional parameters if the join is a parameterised subquery |
|
| 671 | 671 | * @return static |
| 672 | 672 | */ |
| 673 | 673 | public function innerJoin($table, $onClause, $alias = null, $order = 20, $parameters = array()) |
@@ -686,7 +686,7 @@ discard block |
||
| 686 | 686 | * @param int $order A numerical index to control the order that joins are added to the query; lower order values |
| 687 | 687 | * will cause the query to appear first. The default is 20, and joins created automatically by the |
| 688 | 688 | * ORM have a value of 10. |
| 689 | - * @param array $parameters Any additional parameters if the join is a parameterised subquery |
|
| 689 | + * @param string[] $parameters Any additional parameters if the join is a parameterised subquery |
|
| 690 | 690 | * @return static |
| 691 | 691 | */ |
| 692 | 692 | public function leftJoin($table, $onClause, $alias = null, $order = 20, $parameters = array()) |
@@ -834,7 +834,7 @@ discard block |
||
| 834 | 834 | * Return the maximum value of the given field in this DataList |
| 835 | 835 | * |
| 836 | 836 | * @param string $fieldName |
| 837 | - * @return mixed |
|
| 837 | + * @return string |
|
| 838 | 838 | */ |
| 839 | 839 | public function max($fieldName) |
| 840 | 840 | { |
@@ -845,7 +845,7 @@ discard block |
||
| 845 | 845 | * Return the minimum value of the given field in this DataList |
| 846 | 846 | * |
| 847 | 847 | * @param string $fieldName |
| 848 | - * @return mixed |
|
| 848 | + * @return string |
|
| 849 | 849 | */ |
| 850 | 850 | public function min($fieldName) |
| 851 | 851 | { |
@@ -856,7 +856,7 @@ discard block |
||
| 856 | 856 | * Return the average value of the given field in this DataList |
| 857 | 857 | * |
| 858 | 858 | * @param string $fieldName |
| 859 | - * @return mixed |
|
| 859 | + * @return string |
|
| 860 | 860 | */ |
| 861 | 861 | public function avg($fieldName) |
| 862 | 862 | { |
@@ -867,7 +867,7 @@ discard block |
||
| 867 | 867 | * Return the sum of the values of the given field in this DataList |
| 868 | 868 | * |
| 869 | 869 | * @param string $fieldName |
| 870 | - * @return mixed |
|
| 870 | + * @return string |
|
| 871 | 871 | */ |
| 872 | 872 | public function sum($fieldName) |
| 873 | 873 | { |
@@ -926,7 +926,7 @@ discard block |
||
| 926 | 926 | /** |
| 927 | 927 | * Restrict the columns to fetch into this DataList |
| 928 | 928 | * |
| 929 | - * @param array $queriedColumns |
|
| 929 | + * @param string[] $queriedColumns |
|
| 930 | 930 | * @return static |
| 931 | 931 | */ |
| 932 | 932 | public function setQueriedColumns($queriedColumns) |
@@ -1172,7 +1172,7 @@ discard block |
||
| 1172 | 1172 | /** |
| 1173 | 1173 | * Returns item stored in list with index $key |
| 1174 | 1174 | * |
| 1175 | - * @param mixed $key |
|
| 1175 | + * @param integer $key |
|
| 1176 | 1176 | * @return DataObject |
| 1177 | 1177 | */ |
| 1178 | 1178 | public function offsetGet($key) |