1
0
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:
Matthew Brown 2019-01-05 16:34:09 -05:00
parent c7723df8ff
commit 3a405f4951

View File

@ -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,