Completed
Push — master ( 016a0b...25fc98 )
by Franco
12s
created
code/Model/EditableCustomRule.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
      *
90 90
      * @param Member $member
91 91
      * @param array $context Virtual parameter to allow context to be passed in to check
92
-     * @return bool
92
+     * @return boolean|string
93 93
      */
94 94
     public function canCreate($member = null, $context = [])
95 95
     {
Please login to merge, or discard this patch.
code/Model/EditableFormField.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -853,7 +853,7 @@  discard block
 block discarded – undo
853 853
      * Return the error message for this field. Either uses the custom
854 854
      * one (if provided) or the default SilverStripe message
855 855
      *
856
-     * @return Varchar
856
+     * @return DBField
857 857
      */
858 858
     public function getErrorMessage()
859 859
     {
@@ -893,7 +893,7 @@  discard block
 block discarded – undo
893 893
      *
894 894
      * @param string $column name of column
895 895
      * @param array $fieldClasses List of allowed classnames if this formfield has a selectable class
896
-     * @return FormField
896
+     * @return DropdownField
897 897
      */
898 898
     public function getInlineClassnameField($column, $fieldClasses)
899 899
     {
@@ -904,7 +904,7 @@  discard block
 block discarded – undo
904 904
      * Get the formfield to use when editing the title inline
905 905
      *
906 906
      * @param string $column
907
-     * @return FormField
907
+     * @return TextField
908 908
      */
909 909
     public function getInlineTitleField($column)
910 910
     {
Please login to merge, or discard this patch.
code/Model/EditableFormField/EditableCheckbox.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     private static $table_name = 'EditableCheckbox';
29 29
 
30 30
     /**
31
-     * @return FieldList
31
+     * @return \SilverStripe\Forms\FieldList
32 32
      */
33 33
     public function getCMSFields()
34 34
     {
Please login to merge, or discard this patch.
code/Model/EditableFormField/EditableCountryDropdownField.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     private static $table_name = 'EditableCountryDropdownField';
24 24
 
25 25
     /**
26
-     * @return FieldList
26
+     * @return \SilverStripe\Forms\FieldList
27 27
      */
28 28
     public function getCMSFields()
29 29
     {
Please login to merge, or discard this patch.
code/Model/EditableFormField/EditableDropdown.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     private static $table_name = 'EditableDropdown';
32 32
 
33 33
     /**
34
-     * @return FieldList
34
+     * @return \SilverStripe\Forms\FieldList
35 35
      */
36 36
     public function getCMSFields()
37 37
     {
Please login to merge, or discard this patch.
code/Model/EditableFormField/EditableFileField.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     ];
45 45
 
46 46
     /**
47
-     * @return FieldList
47
+     * @return \SilverStripe\Forms\FieldList
48 48
      */
49 49
     public function getCMSFields()
50 50
     {
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     }
80 80
 
81 81
     /**
82
-     * @return ValidationResult
82
+     * @return \SilverStripe\ORM\ValidationResult
83 83
      */
84 84
     public function validate()
85 85
     {
Please login to merge, or discard this patch.
code/Model/EditableFormField/EditableFormHeading.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     private static $table_name = 'EditableFormHeading';
35 35
 
36 36
     /**
37
-     * @return FieldList
37
+     * @return \SilverStripe\Forms\FieldList
38 38
      */
39 39
     public function getCMSFields()
40 40
     {
Please login to merge, or discard this patch.
code/Model/EditableFormField/EditableFormStep.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     private static $table_name = 'EditableFormStep';
29 29
 
30 30
     /**
31
-     * @return FieldList
31
+     * @return \SilverStripe\Forms\FieldList
32 32
      */
33 33
     public function getCMSFields()
34 34
     {
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     }
41 41
 
42 42
     /**
43
-     * @return FormField
43
+     * @return UserFormsStepField
44 44
      */
45 45
     public function getFormField()
46 46
     {
Please login to merge, or discard this patch.
code/Model/EditableFormField/EditableLiteralField.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
     }
111 111
 
112 112
     /**
113
-     * @return FieldList
113
+     * @return \SilverStripe\Forms\FieldList
114 114
      */
115 115
     public function getCMSFields()
116 116
     {
Please login to merge, or discard this patch.