File tree 3 files changed +0
-5
lines changed
3 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -304,7 +304,6 @@ private function getCustomFunction(string $functionName): PhpFunctionReflection
304
304
$ deprecatedTag = null ;
305
305
$ isDeprecated = false ;
306
306
$ isInternal = false ;
307
- $ isFinal = false ;
308
307
$ isPure = null ;
309
308
$ asserts = Assertions::createEmpty ();
310
309
$ acceptsNamedArguments = true ;
@@ -327,7 +326,6 @@ private function getCustomFunction(string $functionName): PhpFunctionReflection
327
326
$ deprecatedTag = $ resolvedPhpDoc ->getDeprecatedTag ();
328
327
$ isDeprecated = $ resolvedPhpDoc ->isDeprecated ();
329
328
$ isInternal = $ resolvedPhpDoc ->isInternal ();
330
- $ isFinal = $ resolvedPhpDoc ->isFinal ();
331
329
$ isPure = $ resolvedPhpDoc ->isPure ();
332
330
$ asserts = Assertions::createFromResolvedPhpDocBlock ($ resolvedPhpDoc );
333
331
if ($ resolvedPhpDoc ->hasPhpDocString ()) {
@@ -348,7 +346,6 @@ private function getCustomFunction(string $functionName): PhpFunctionReflection
348
346
$ deprecatedTag !== null ? $ deprecatedTag ->getMessage () : null ,
349
347
$ isDeprecated ,
350
348
$ isInternal ,
351
- $ isFinal ,
352
349
$ reflectionFunction ->getFileName () !== false ? $ reflectionFunction ->getFileName () : null ,
353
350
$ isPure ,
354
351
$ asserts ,
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ public function create(
25
25
?string $ deprecatedDescription ,
26
26
bool $ isDeprecated ,
27
27
bool $ isInternal ,
28
- bool $ isFinal ,
29
28
?string $ filename ,
30
29
?bool $ isPure ,
31
30
Assertions $ asserts ,
Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ public function __construct(
54
54
private ?string $ deprecatedDescription ,
55
55
private bool $ isDeprecated ,
56
56
private bool $ isInternal ,
57
- private bool $ isFinal ,
58
57
private ?string $ filename ,
59
58
private ?bool $ isPure ,
60
59
private Assertions $ asserts ,
You can’t perform that action at this time.
0 commit comments