Skip to content

Commit

Permalink
Merge pull request #143 from Ocramius/hotfix/cs
Browse files Browse the repository at this point in the history
Applying automated CS fixes
  • Loading branch information
Ocramius committed Feb 6, 2014
2 parents c870510 + d0244ef commit a8e3e5b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions src/ProxyManager/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ public function setAutoGenerateProxies()

/**
* @return bool
*
* @deprecated deprecated since version 0.5
*/
public function doesAutoGenerateProxies()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
class InterceptorGenerator
{
/**
* @param string $methodBody the body of the previously generated code.
* It MUST assign the return value to a variable
* `$returnValue` instead of directly returning
* @param string $methodBody the body of the previously generated code.
* It MUST assign the return value to a variable
* `$returnValue` instead of directly returning
* @param \ProxyManager\Generator\MethodGenerator $method
* @param \Zend\Code\Generator\PropertyGenerator $prefixInterceptors
* @param \Zend\Code\Generator\PropertyGenerator $suffixInterceptors
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
class InterceptorGenerator
{
/**
* @param string $methodBody the body of the previously generated code.
* It MUST assign the return value to a variable
* `$returnValue` instead of directly returning
* @param string $methodBody the body of the previously generated code.
* It MUST assign the return value to a variable
* `$returnValue` instead of directly returning
* @param \ProxyManager\Generator\MethodGenerator $method
* @param \Zend\Code\Generator\PropertyGenerator $valueHolder
* @param \Zend\Code\Generator\PropertyGenerator $prefixInterceptors
Expand Down
10 changes: 5 additions & 5 deletions src/ProxyManager/ProxyGenerator/Util/PublicScopeSimulator.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ class PublicScopeSimulator
* This is done by introspecting `debug_backtrace()` and then binding a closure to the scope
* of the parent caller.
*
* @param string $operationType operation to execute: one of 'get', 'set', 'isset' or 'unset'
* @param string $nameParameter name of the `name` parameter of the magic method
* @param string|null $valueParameter name of the `value` parameter of the magic method
* @param PropertyGenerator $valueHolder name of the property containing the target object from which
* @param string $operationType operation to execute: one of 'get', 'set', 'isset' or 'unset'
* @param string $nameParameter name of the `name` parameter of the magic method
* @param string|null $valueParameter name of the `value` parameter of the magic method
* @param PropertyGenerator $valueHolder name of the property containing the target object from which
* to read the property. `$this` if none provided
* @param string|null $returnPropertyName name of the property to which we want to assign the result of
* @param string|null $returnPropertyName name of the property to which we want to assign the result of
* the operation. Return directly if none provided
*
* @return string
Expand Down

0 comments on commit a8e3e5b

Please sign in to comment.