We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3425771 commit 91941b4Copy full SHA for 91941b4
src/Form/FieldClass.php
@@ -50,15 +50,6 @@ public function __construct(
50
}
51
52
53
- public function __call(string $param, array $args): mixed
54
- {
55
- if (isset($this->$param) === true) {
56
- return $this->$param;
57
- }
58
-
59
- return $this->params[$param] ?? null;
60
61
62
/**
63
* Sets a new value for the field
64
*/
@@ -68,14 +59,6 @@ public function fill(mixed $value = null): void
68
$this->errors = null;
69
70
71
- /**
72
- * Returns all original params for the field
73
- */
74
- public function params(): array
75
76
- return $this->params;
77
78
79
80
* Define the props that will be sent to
81
* the Vue component
0 commit comments