mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
Remove public from const
This commit is contained in:
parent
c7723df8ff
commit
3a405f4951
@ -29,7 +29,7 @@ abstract class ClassLikeAnalyzer extends SourceAnalyzer implements StatementsSou
|
||||
const VISIBILITY_PROTECTED = 2;
|
||||
const VISIBILITY_PRIVATE = 3;
|
||||
|
||||
public const SPECIAL_TYPES = [
|
||||
const SPECIAL_TYPES = [
|
||||
'int' => 'int',
|
||||
'string' => 'string',
|
||||
'float' => 'float',
|
||||
@ -44,7 +44,7 @@ abstract class ClassLikeAnalyzer extends SourceAnalyzer implements StatementsSou
|
||||
'mixed' => 'mixed',
|
||||
];
|
||||
|
||||
public const GETTYPE_TYPES = [
|
||||
const GETTYPE_TYPES = [
|
||||
'boolean' => true,
|
||||
'integer' => true,
|
||||
'double' => true,
|
||||
|
Loading…
Reference in New Issue
Block a user