Skip to content

Commit 80a222c

Browse files
author
smoench
committed
cs fixes
1 parent e675935 commit 80a222c

File tree

8 files changed

+9
-10
lines changed

8 files changed

+9
-10
lines changed

src/PseudoTypes/CallableString.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*/
2525
final class CallableString extends String_ implements PseudoType
2626
{
27-
public function underlyingType(): Type
27+
public function underlyingType() : Type
2828
{
2929
return new String_();
3030
}

src/PseudoTypes/HtmlEscapedString.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*/
2525
final class HtmlEscapedString extends String_ implements PseudoType
2626
{
27-
public function underlyingType(): Type
27+
public function underlyingType() : Type
2828
{
2929
return new String_();
3030
}

src/PseudoTypes/LowercaseString.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*/
2525
final class LowercaseString extends String_ implements PseudoType
2626
{
27-
public function underlyingType(): Type
27+
public function underlyingType() : Type
2828
{
2929
return new String_();
3030
}

src/PseudoTypes/NonEmptyLowercaseString.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*/
2525
final class NonEmptyLowercaseString extends String_ implements PseudoType
2626
{
27-
public function underlyingType(): Type
27+
public function underlyingType() : Type
2828
{
2929
return new String_();
3030
}

src/PseudoTypes/NonEmptyString.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*/
2525
final class NonEmptyString extends String_ implements PseudoType
2626
{
27-
public function underlyingType(): Type
27+
public function underlyingType() : Type
2828
{
2929
return new String_();
3030
}

src/PseudoTypes/NumericString.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*/
2525
final class NumericString extends String_ implements PseudoType
2626
{
27-
public function underlyingType(): Type
27+
public function underlyingType() : Type
2828
{
2929
return new String_();
3030
}

src/PseudoTypes/PositiveInteger.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
use phpDocumentor\Reflection\PseudoType;
1717
use phpDocumentor\Reflection\Type;
1818
use phpDocumentor\Reflection\Types\Integer;
19-
use phpDocumentor\Reflection\Types\String_;
2019

2120
/**
2221
* Value Object representing the type 'string'.
@@ -25,7 +24,7 @@
2524
*/
2625
final class PositiveInteger extends Integer implements PseudoType
2726
{
28-
public function underlyingType(): Type
27+
public function underlyingType() : Type
2928
{
3029
return new Integer();
3130
}

src/PseudoTypes/TraitString.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
*/
2525
final class TraitString extends String_ implements PseudoType
2626
{
27-
public function underlyingType(): Type
27+
public function underlyingType() : Type
2828
{
29-
return new String_();
29+
return new String_();
3030
}
3131

3232
/**

0 commit comments

Comments
 (0)