Skip to content

Commit bd6f207

Browse files
committed
Fix CS
1 parent 1e0cd53 commit bd6f207

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+0
-179
lines changed

src/Ast/ConstExpr/ConstExprArrayItemNode.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ public function __construct(?ConstExprNode $key, ConstExprNode $value)
2020
$this->value = $value;
2121
}
2222

23-
2423
public function __toString(): string
2524
{
2625
if ($this->key !== null) {

src/Ast/ConstExpr/ConstExprArrayNode.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ public function __construct(array $items)
2121
$this->items = $items;
2222
}
2323

24-
2524
public function __toString(): string
2625
{
2726
return '[' . implode(', ', $this->items) . ']';

src/Ast/ConstExpr/ConstExprFloatNode.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ public function __construct(string $value)
1616
$this->value = $value;
1717
}
1818

19-
2019
public function __toString(): string
2120
{
2221
return $this->value;

src/Ast/ConstExpr/ConstExprIntegerNode.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ public function __construct(string $value)
1616
$this->value = $value;
1717
}
1818

19-
2019
public function __toString(): string
2120
{
2221
return $this->value;

src/Ast/ConstExpr/ConstExprStringNode.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ public function __construct(string $value, int $quoteType)
3535
$this->quoteType = $quoteType;
3636
}
3737

38-
3938
public function __toString(): string
4039
{
4140
if ($this->quoteType === self::SINGLE_QUOTED) {

src/Ast/ConstExpr/ConstFetchNode.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ public function __construct(string $className, string $name)
2020
$this->name = $name;
2121
}
2222

23-
2423
public function __toString(): string
2524
{
2625
if ($this->className === '') {

src/Ast/PhpDoc/AssertTagMethodValueNode.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ public function __construct(TypeNode $type, string $parameter, string $method, b
3434
$this->description = $description;
3535
}
3636

37-
3837
public function __toString(): string
3938
{
4039
$isNegated = $this->isNegated ? '!' : '';

src/Ast/PhpDoc/AssertTagPropertyValueNode.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ public function __construct(TypeNode $type, string $parameter, string $property,
3434
$this->description = $description;
3535
}
3636

37-
3837
public function __toString(): string
3938
{
4039
$isNegated = $this->isNegated ? '!' : '';

src/Ast/PhpDoc/AssertTagValueNode.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ public function __construct(TypeNode $type, string $parameter, bool $isNegated,
3131
$this->description = $description;
3232
}
3333

34-
3534
public function __toString(): string
3635
{
3736
$isNegated = $this->isNegated ? '!' : '';

src/Ast/PhpDoc/DeprecatedTagValueNode.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ public function __construct(string $description)
1818
$this->description = $description;
1919
}
2020

21-
2221
public function __toString(): string
2322
{
2423
return trim($this->description);

0 commit comments

Comments
 (0)