Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Jul 19, 2022
1 parent c6e6540 commit 9b7ee6f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Tests/Fixtures/Annotations/IgnoreDummyAdditionalGetter.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class IgnoreDummyAdditionalGetter
{

private $myValue;

/**
Expand All @@ -17,7 +16,8 @@ public function getMyValue()
return $this->myValue;
}

public function getExtraValue(string $parameter) {
public function getExtraValue(string $parameter)
{
return $parameter;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

class IgnoreDummyAdditionalGetterWithoutIgnoreAnnotations
{

private $myValue;

public function getMyValue()
{
return $this->myValue;
}

public function getExtraValue(string $parameter) {
public function getExtraValue(string $parameter)
{
return $parameter;
}
}
3 changes: 2 additions & 1 deletion Tests/Fixtures/Attributes/IgnoreDummyAdditionalGetter.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ public function getIgnored2()
return $this->myValue;
}

public function getExtraValue(string $parameter) {
public function getExtraValue(string $parameter)
{
return $parameter;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ public function getIgnored2()
return $this->myValue;
}

public function getExtraValue(string $parameter) {
public function getExtraValue(string $parameter)
{
return $parameter;
}
}

0 comments on commit 9b7ee6f

Please sign in to comment.