@@ -42,8 +42,7 @@ |
||
42 | 42 | } |
43 | 43 | |
44 | 44 | return sprintf('In method "%s::%s", parameter $%s', $this->scope->getClassReflection()->getDisplayName(), $this->function->name->name, $this->parameter->getName()); |
45 | - } |
|
46 | - elseif ($this->function instanceof Function_) { |
|
45 | + } elseif ($this->function instanceof Function_) { |
|
47 | 46 | return sprintf('In function "%s", parameter $%s', $this->function->name->name, $this->parameter->getName()); |
48 | 47 | } |
49 | 48 | return 'Should not happen'; |
@@ -37,8 +37,7 @@ |
||
37 | 37 | } |
38 | 38 | |
39 | 39 | return sprintf('In method "%s::%s",', $this->scope->getClassReflection()->getDisplayName(), $this->function->name->name); |
40 | - } |
|
41 | - elseif ($this->function instanceof Function_) { |
|
40 | + } elseif ($this->function instanceof Function_) { |
|
42 | 41 | return sprintf('In function "%s",', $this->function->name->name); |
43 | 42 | } |
44 | 43 | return 'Should not happen'; |