Skip to content

Commit

Permalink
Merge pull request #267 from Ocramius/hotfix/#264-duplicate-semicolon…
Browse files Browse the repository at this point in the history
…-removal

#264 - duplicate semicolon removal
  • Loading branch information
Ocramius committed Dec 30, 2015
2 parents e360477 + dbf4b43 commit 1c6f0c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public static function getPublicAccessSimulationCode(
. 'if (! $realInstanceReflection->hasProperty($' . $nameParameter . ')) {' . "\n"
. ' $targetObject = ' . $target . ';' . "\n\n"
. self::getUndefinedPropertyNotice($operationType, $nameParameter)
. ' ' . self::getOperation($operationType, $nameParameter, $valueParameter) . ";\n"
. ' ' . self::getOperation($operationType, $nameParameter, $valueParameter) . "\n"
. " return;\n"
. '}' . "\n\n"
. '$targetObject = ' . self::getTargetObject($valueHolder) . ";\n"
Expand Down

0 comments on commit 1c6f0c4

Please sign in to comment.