Fork me on GitHub
a Sensio Labs Product

BoY42 (v3.15.1) edition

Rule types_spaces

A single space or none should be around union type and intersection type operators.

Configuration

space

spacing to apply around union type and intersection type operators.

Allowed values: 'none', 'single'

Default value: 'none'

space_multiple_catch

spacing to apply around type operator when catching exceptions of multiple types, use null to follow the value configured for space.

Allowed values: 'none', 'single', null

Default value: null

Examples

Example #1

Default configuration.

--- Original
+++ New
 <?php
 try
 {
     new Foo();
-} catch (ErrorA | ErrorB $e) {
+} catch (ErrorA|ErrorB $e) {
 echo'error';}

Example #2

With configuration: ['space' => 'single'].

--- Original
+++ New
 <?php
 try
 {
     new Foo();
-} catch (ErrorA|ErrorB $e) {
+} catch (ErrorA | ErrorB $e) {
 echo'error';}

Example #3

Default configuration.

--- Original
+++ New
 <?php
-function foo(int | string $x)
+function foo(int|string $x)
 {
 }

Rule sets

The rule is part of the following rule sets:

@PhpCsFixer

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

@Symfony

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

The logo is © 2010-2022 Sensio Labs