We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed32865 commit 6eafd3eCopy full SHA for 6eafd3e
1 file changed
src/Schema/AbstractSchemaInnerParse.php
@@ -9,22 +9,22 @@
9
10
abstract class AbstractSchemaInnerParse implements SchemaInterface
11
{
12
- protected bool $nullable = false;
+ final protected bool $nullable = false;
13
14
/**
15
* @var array<\Closure(mixed): mixed>
16
*/
17
- protected array $preParses = [];
+ final protected array $preParses = [];
18
19
20
* @var array<\Closure>
21
22
- protected array $postParses = [];
+ final protected array $postParses = [];
23
24
25
* @var \Closure(mixed, ErrorsException): mixed
26
27
- protected ?\Closure $catch = null;
+ final protected ?\Closure $catch = null;
28
29
final public function nullable(bool $nullable = true): static
30
0 commit comments