Skip to content
On this page

spacing.typesfixable

Ensure consistent types spacing.

Examples

  • Examples of correct code for this rule using default options

undefined

php
<?php
class Test{
	public function test(?bool $a, $b, $c,
	$d = '', int $e): string
	{}
	
	public function test1(?array $a, int $b, bool $c, ?string $d = ''): ?bool {
	}
	
	public function test2(bool $a,
	int $b,
	bool $c,?string $d = '') {
	}
	
	public function test3(?bool $a, $b, $c,
	$d = '', int $e) :
	string
	{}
}


function test(array $a, int $b, bool $c,  string $d = ''): ?
   string {
}

function test1(?array $a, int $b, bool $c, ?string $d = ''): ?bool {
}

function test2(bool $a, 
int $b,
bool $c,?string $d = '') {
}

function test4(): bool{}

function test3(?bool $a, $b, $c,
$d = '', int $e): string
{}
  • Examples of incorrect code for this rule using default options

undefined

php
<?php
class Test{
	public function test(?  bool     $a, $b, $c,
	$d = '', int     $e)   :string
	{}
	
	public function test1(? array   $a, int  &$b, bool  $c, ?string $d = ''): ?  bool {
	}
	
	public function test2(bool     $a,
	int
	&$b,
	bool $c,?  string    $d = '') {
	}
	
	public function test3(?  bool     $a, $b, $c,
	$d = '', int     $e)  :string
	{}
}


function test(array   $a, int  $b, bool $c,  string
   $d = '')   : ?   string {
}

function test1(? array   $a, int  &$b, bool  $c, ?string $d = ''):  ?  bool {
}

function test2(bool     $a, 
int 
&$b,
bool $c,?  string    $d = '') {
}

function test4():bool{}

function test3(?  bool     $a, $b, $c,
$d = '', int     $e)   : string
{}

Released under the MIT License.