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 @@ -1378,7 +1378,7 @@ public function isMethod(): bool
1378
1378
return $ this ->name instanceof MethodName;
1379
1379
}
1380
1380
1381
- public function isFinalMethod (): bool
1381
+ private function isFinalMethod (): bool
1382
1382
{
1383
1383
return ($ this ->flags & Modifiers::FINAL ) || ($ this ->classFlags & Modifiers::FINAL );
1384
1384
}
@@ -1389,7 +1389,7 @@ public function isInstanceMethod(): bool
1389
1389
}
1390
1390
1391
1391
/** @return string[] */
1392
- public function getModifierNames (): array
1392
+ private function getModifierNames (): array
1393
1393
{
1394
1394
if (!$ this ->isMethod ()) {
1395
1395
return [];
@@ -1429,7 +1429,7 @@ private function hasParamWithUnknownDefaultValue(): bool
1429
1429
return false ;
1430
1430
}
1431
1431
1432
- public function equalsApartFromNameAndRefcount (FuncInfo $ other ): bool {
1432
+ private function equalsApartFromNameAndRefcount (FuncInfo $ other ): bool {
1433
1433
if (count ($ this ->args ) !== count ($ other ->args )) {
1434
1434
return false ;
1435
1435
}
You can’t perform that action at this time.
0 commit comments