Skip to content

Commit

Permalink
Improved compatibility with PHPStan 0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Jan 7, 2017
1 parent 1f18b6a commit dcd0d0e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Reflection/Dibi/DibiFluentMethodReflection.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ public function getDeclaringClass(): ClassReflection
return $this->dibiFluent;
}

public function getPrototype(): MethodReflection
{
return $this;
}

public function isStatic(): bool
{
return false;
Expand Down

0 comments on commit dcd0d0e

Please sign in to comment.