Class, trait and interface elements must be separated with one or none blank line.
Dictionary of const|method|property|trait_import|case
=>
none|one|only_if_meta
values.
Allowed types: array
Default value: ['const' => 'one', 'method' => 'one', 'property' => 'one', 'trait_import' => 'none', 'case' => 'none']
Default configuration.
--- Original
+++ New
<?php
final class Sample
{
protected function foo()
{
}
+
protected function bar()
{
}
-
-
}
With configuration: ['elements' => ['property' => 'one']]
.
--- Original
+++ New
<?php
class Sample
-{private $a; // foo
+{
+private $a; // foo
+
/** second in a hour */
private $b;
}
With configuration: ['elements' => ['const' => 'one']]
.
--- Original
+++ New
<?php
class Sample
{
const A = 1;
+
/** seconds in some hours */
const B = 3600;
}
With configuration: ['elements' => ['const' => 'only_if_meta']]
.
--- Original
+++ New
<?php
class Sample
{
/** @var int */
const SECOND = 1;
+
/** @var int */
const MINUTE = 60;
-
const HOUR = 3600;
-
const DAY = 86400;
}
With configuration: ['elements' => ['property' => 'only_if_meta']]
.
--- Original
+++ New
<?php
class Sample
{
public $a;
+
#[SetUp]
public $b;
+
/** @var string */
public $c;
+
/** @internal */
#[Assert\String()]
public $d;
-
public $e;
}
The rule is part of the following rule sets:
@PhpCsFixer with config:
['elements' => ['method' => 'one']]
@Symfony with config:
['elements' => ['method' => 'one']]
PhpCsFixer\Fixer\ClassNotation\ClassAttributesSeparationFixer