File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1379,7 +1379,7 @@ public function isMethod(): bool
1379
1379
return $ this ->name instanceof MethodName;
1380
1380
}
1381
1381
1382
- public function isFinalMethod (): bool
1382
+ private function isFinalMethod (): bool
1383
1383
{
1384
1384
return ($ this ->flags & Modifiers::FINAL ) || ($ this ->classFlags & Modifiers::FINAL );
1385
1385
}
@@ -1390,7 +1390,7 @@ public function isInstanceMethod(): bool
1390
1390
}
1391
1391
1392
1392
/** @return string[] */
1393
- public function getModifierNames (): array
1393
+ private function getModifierNames (): array
1394
1394
{
1395
1395
if (!$ this ->isMethod ()) {
1396
1396
return [];
@@ -1430,7 +1430,7 @@ private function hasParamWithUnknownDefaultValue(): bool
1430
1430
return false ;
1431
1431
}
1432
1432
1433
- public function equalsApartFromNameAndRefcount (FuncInfo $ other ): bool {
1433
+ private function equalsApartFromNameAndRefcount (FuncInfo $ other ): bool {
1434
1434
if (count ($ this ->args ) !== count ($ other ->args )) {
1435
1435
return false ;
1436
1436
}
You can’t perform that action at this time.
0 commit comments