@@ -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) |
@@ -556,7 +556,7 @@ discard block |
||
556 | 556 | * Check if the given field specification could be interpreted as an unquoted relation name |
557 | 557 | * |
558 | 558 | * @param string $field |
559 | - * @return bool |
|
559 | + * @return integer |
|
560 | 560 | */ |
561 | 561 | protected function isValidRelationName($field) |
562 | 562 | { |
@@ -669,7 +669,7 @@ discard block |
||
669 | 669 | * @param int $order A numerical index to control the order that joins are added to the query; lower order values |
670 | 670 | * will cause the query to appear first. The default is 20, and joins created automatically by the |
671 | 671 | * ORM have a value of 10. |
672 | - * @param array $parameters Any additional parameters if the join is a parameterised subquery |
|
672 | + * @param string[] $parameters Any additional parameters if the join is a parameterised subquery |
|
673 | 673 | * @return static |
674 | 674 | */ |
675 | 675 | public function innerJoin($table, $onClause, $alias = null, $order = 20, $parameters = array()) |
@@ -688,7 +688,7 @@ discard block |
||
688 | 688 | * @param int $order A numerical index to control the order that joins are added to the query; lower order values |
689 | 689 | * will cause the query to appear first. The default is 20, and joins created automatically by the |
690 | 690 | * ORM have a value of 10. |
691 | - * @param array $parameters Any additional parameters if the join is a parameterised subquery |
|
691 | + * @param string[] $parameters Any additional parameters if the join is a parameterised subquery |
|
692 | 692 | * @return static |
693 | 693 | */ |
694 | 694 | public function leftJoin($table, $onClause, $alias = null, $order = 20, $parameters = array()) |
@@ -836,7 +836,7 @@ discard block |
||
836 | 836 | * Return the maximum value of the given field in this DataList |
837 | 837 | * |
838 | 838 | * @param string $fieldName |
839 | - * @return mixed |
|
839 | + * @return string |
|
840 | 840 | */ |
841 | 841 | public function max($fieldName) |
842 | 842 | { |
@@ -847,7 +847,7 @@ discard block |
||
847 | 847 | * Return the minimum value of the given field in this DataList |
848 | 848 | * |
849 | 849 | * @param string $fieldName |
850 | - * @return mixed |
|
850 | + * @return string |
|
851 | 851 | */ |
852 | 852 | public function min($fieldName) |
853 | 853 | { |
@@ -858,7 +858,7 @@ discard block |
||
858 | 858 | * Return the average value of the given field in this DataList |
859 | 859 | * |
860 | 860 | * @param string $fieldName |
861 | - * @return mixed |
|
861 | + * @return string |
|
862 | 862 | */ |
863 | 863 | public function avg($fieldName) |
864 | 864 | { |
@@ -869,7 +869,7 @@ discard block |
||
869 | 869 | * Return the sum of the values of the given field in this DataList |
870 | 870 | * |
871 | 871 | * @param string $fieldName |
872 | - * @return mixed |
|
872 | + * @return string |
|
873 | 873 | */ |
874 | 874 | public function sum($fieldName) |
875 | 875 | { |
@@ -928,7 +928,7 @@ discard block |
||
928 | 928 | /** |
929 | 929 | * Restrict the columns to fetch into this DataList |
930 | 930 | * |
931 | - * @param array $queriedColumns |
|
931 | + * @param string[] $queriedColumns |
|
932 | 932 | * @return static |
933 | 933 | */ |
934 | 934 | public function setQueriedColumns($queriedColumns) |
@@ -1174,7 +1174,7 @@ discard block |
||
1174 | 1174 | /** |
1175 | 1175 | * Returns item stored in list with index $key |
1176 | 1176 | * |
1177 | - * @param mixed $key |
|
1177 | + * @param integer $key |
|
1178 | 1178 | * @return DataObject |
1179 | 1179 | */ |
1180 | 1180 | public function offsetGet($key) |
@@ -2469,6 +2469,7 @@ discard block |
||
2469 | 2469 | |
2470 | 2470 | /** |
2471 | 2471 | * {@inheritdoc} |
2472 | + * @param string $field |
|
2472 | 2473 | */ |
2473 | 2474 | public function castingHelper($field) |
2474 | 2475 | { |
@@ -2637,7 +2638,7 @@ discard block |
||
2637 | 2638 | |
2638 | 2639 | /** |
2639 | 2640 | * @param Member $member |
2640 | - * @return boolean |
|
2641 | + * @return boolean|string |
|
2641 | 2642 | */ |
2642 | 2643 | public function canView($member = null) |
2643 | 2644 | { |
@@ -2650,7 +2651,7 @@ discard block |
||
2650 | 2651 | |
2651 | 2652 | /** |
2652 | 2653 | * @param Member $member |
2653 | - * @return boolean |
|
2654 | + * @return boolean|string |
|
2654 | 2655 | */ |
2655 | 2656 | public function canEdit($member = null) |
2656 | 2657 | { |
@@ -2663,7 +2664,7 @@ discard block |
||
2663 | 2664 | |
2664 | 2665 | /** |
2665 | 2666 | * @param Member $member |
2666 | - * @return boolean |
|
2667 | + * @return boolean|string |
|
2667 | 2668 | */ |
2668 | 2669 | public function canDelete($member = null) |
2669 | 2670 | { |
@@ -2678,7 +2679,7 @@ discard block |
||
2678 | 2679 | * @param Member $member |
2679 | 2680 | * @param array $context Additional context-specific data which might |
2680 | 2681 | * affect whether (or where) this object could be created. |
2681 | - * @return boolean |
|
2682 | + * @return boolean|string |
|
2682 | 2683 | */ |
2683 | 2684 | public function canCreate($member = null, $context = array()) |
2684 | 2685 | { |
@@ -2788,7 +2789,7 @@ discard block |
||
2788 | 2789 | * Traverses to a field referenced by relationships between data objects, returning the value |
2789 | 2790 | * The path to the related field is specified with dot separated syntax (eg: Parent.Child.Child.FieldName) |
2790 | 2791 | * |
2791 | - * @param $fieldName string |
|
2792 | + * @param string $fieldName string |
|
2792 | 2793 | * @return string | null - will return null on a missing value |
2793 | 2794 | */ |
2794 | 2795 | public function relField($fieldName) |
@@ -2866,7 +2867,7 @@ discard block |
||
2866 | 2867 | * @param string $callerClass The class of objects to be returned |
2867 | 2868 | * @param string|array $filter A filter to be inserted into the WHERE clause. |
2868 | 2869 | * Supports parameterised queries. See SQLSelect::addWhere() for syntax examples. |
2869 | - * @param string|array $sort A sort expression to be inserted into the ORDER |
|
2870 | + * @param string $sort A sort expression to be inserted into the ORDER |
|
2870 | 2871 | * BY clause. If omitted, self::$default_sort will be used. |
2871 | 2872 | * @param string $join Deprecated 3.0 Join clause. Use leftJoin($table, $joinClause) instead. |
2872 | 2873 | * @param string|array $limit A limit expression to be inserted into the LIMIT clause. |