Commit 764433b 1 parent 8fe90d5 commit 764433b Copy full SHA for 764433b
File tree 1 file changed +4
-4
lines changed
packages/fractor-typoscript/src
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,15 +18,15 @@ abstract class AbstractTypoScriptFractor implements TypoScriptFractor
18
18
/**
19
19
* @param list<Statement> $statements
20
20
*/
21
- public function beforeTraversal (File $ file , array $ statements ): void
21
+ final public function beforeTraversal (File $ file , array $ statements ): void
22
22
{
23
23
$ this ->file = $ file ;
24
24
}
25
25
26
26
/**
27
27
* @return Statement|list<Statement>|int
28
28
*/
29
- public function enterNode (Statement $ node ): Statement |array |int
29
+ final public function enterNode (Statement $ node ): Statement |array |int
30
30
{
31
31
$ result = $ this ->refactor ($ node );
32
32
@@ -40,14 +40,14 @@ public function enterNode(Statement $node): Statement|array|int
40
40
return $ result ;
41
41
}
42
42
43
- public function leaveNode (Statement $ node ): void
43
+ final public function leaveNode (Statement $ node ): void
44
44
{
45
45
}
46
46
47
47
/**
48
48
* @param list<Statement> $statements
49
49
*/
50
- public function afterTraversal (array $ statements ): void
50
+ final public function afterTraversal (array $ statements ): void
51
51
{
52
52
}
53
53
}
You can’t perform that action at this time.
0 commit comments