Fork me on GitHub
a Sensio Labs Product

BoY42 (v3.15.1) edition

Rule return_type_declaration

Adjust spacing around colon in return type declarations and backed enum types.

Description

Rule is applied only in a PHP 7+ environment.

Configuration

space_before

Spacing to apply before colon.

Allowed values: 'none', 'one'

Default value: 'none'

Examples

Example #1

Default configuration.

--- Original
+++ New
 <?php
-function foo(int $a):string {};
+function foo(int $a): string {};

Example #2

With configuration: ['space_before' => 'none'].

--- Original
+++ New
 <?php
-function foo(int $a):string {};
+function foo(int $a): string {};

Example #3

With configuration: ['space_before' => 'one'].

--- Original
+++ New
 <?php
-function foo(int $a):string {};
+function foo(int $a) : string {};

Rule sets

The rule is part of the following rule sets:

@PER

Using the @PER rule set will enable the return_type_declaration rule with the default config.

@PSR12

Using the @PSR12 rule set will enable the return_type_declaration rule with the default config.

@PhpCsFixer

Using the @PhpCsFixer rule set will enable the return_type_declaration rule with the default config.

@Symfony

Using the @Symfony rule set will enable the return_type_declaration rule with the default config.

The logo is © 2010-2022 Sensio Labs