Rule native_type_declaration_casing¶
Native type declarations should be used in the correct case.
Examples¶
Example #1¶
--- Original
+++ New
 <?php
 class Bar {
-    public function Foo(CALLABLE $bar): INT
+    public function Foo(callable $bar): int
     {
         return 1;
     }
 }
Example #2¶
--- Original
+++ New
 <?php
 class Foo
 {
-    const INT BAR = 1;
+    const int BAR = 1;
 }
Rule sets¶
The rule is part of the following rule sets:
References¶
Fixer class: PhpCsFixer\Fixer\Casing\NativeTypeDeclarationCasingFixer
Test class: PhpCsFixer\Tests\Fixer\Casing\NativeTypeDeclarationCasingFixerTest
The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.