There must be no space around double colons (also called Scope Resolution Operator or Paamayim Nekudotayim).
--- Original
+++ New
<?php
-echo Foo\Bar :: class;
+echo Foo\Bar::class;
The rule is part of the following rule sets:
- Fixer class: PhpCsFixer\Fixer\Operator\NoSpaceAroundDoubleColonFixer
- Test class: PhpCsFixer\Tests\Fixer\Operator\NoSpaceAroundDoubleColonFixerTest
The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.