Skip to content
This repository has been archived by the owner on Dec 6, 2022. It is now read-only.

Commit

Permalink
Fix docblock parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Elliot Levin committed Sep 20, 2014
1 parent 764a830 commit fa43605
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Source/Expressions/CastExpression.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
class CastExpression extends Expression
{
/**
* @var int
* @var string
*/
private $castType;

Expand Down Expand Up @@ -49,7 +49,7 @@ public function traverse(ExpressionWalker $walker)
}

/**
* @param int $castType
* @param string $castType
* @param Expression $castValue
*
* @return self
Expand Down
2 changes: 1 addition & 1 deletion Source/Expressions/Expression.php
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ final public static function invocation(Expression $valueExpression, array $argu
}

/**
* @param int $castType
* @param string $castType
* @param Expression $castValue
*
* @return CastExpression
Expand Down

0 comments on commit fa43605

Please sign in to comment.