Skip to content

Commit

Permalink
Merge pull request #3 from preprocess/feature/update-plugin
Browse files Browse the repository at this point in the history
Update plugin
  • Loading branch information
assertchris authored Oct 8, 2018
2 parents 2dde04d + 060c2aa commit 1043584
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "pre/immutable-classes",
"license": "MIT",
"require": {
"pre/plugin": "^0.11.0"
"pre/plugin": "^0.11.3"
},
"autoload": {
"psr-4": {
Expand Down
7 changes: 6 additions & 1 deletion tests/specs/fallbacks.spec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ class MyImmutableClass

public function __call($method, $parameters)
{
if ($result = $this->handleCallImmutableClassSetters($method, $parameters)) {
if (
($result = $this->handleCallImmutableClassSetters(
$method,
$parameters
))
) {
return $result;
}

Expand Down

0 comments on commit 1043584

Please sign in to comment.