Skip to content

Commit

Permalink
Replaced parent::construct with setting directly
Browse files Browse the repository at this point in the history
  • Loading branch information
peldax authored Mar 2, 2021
1 parent e31517c commit 5aa9a72
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Exception/Tokenizer/TokenizerError.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ abstract class TokenizerError extends \Graphpinator\Exception\GraphpinatorBase
{
final public function __construct(\Graphpinator\Common\Location $location)
{
parent::__construct($location);
parent::__construct();

$this->location = $location;
}

final protected function isOutputable() : bool
Expand Down

0 comments on commit 5aa9a72

Please sign in to comment.