Skip to content

Commit

Permalink
Fix CS issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lisachenko committed Jan 17, 2016
1 parent 683d84c commit ce10307
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ReflectionMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ public function __construct(
$className,
$methodName,
ClassMethod $classMethodNode = null,
ReflectionClass $declaringClass = null)
{
ReflectionClass $declaringClass = null
) {
//for some reason, ReflectionMethod->getNamespaceName in php always returns '', so we shouldn't use it too
$this->className = $className;
$this->declaringClass = $declaringClass;
Expand Down Expand Up @@ -290,7 +290,7 @@ public static function collectFromClassNode(ClassLike $classLikeNode, Reflection

$methodName = $classLevelNode->name;
$methods[$methodName] = new ReflectionMethod(
$reflectionClass->getName(),
$reflectionClass->name,
$methodName,
$classLevelNode,
$reflectionClass
Expand Down

0 comments on commit ce10307

Please sign in to comment.