Fork me on GitHub
a Sensio Labs Product

15 Keys Accelerate (v3.55.0) edition

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

The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.