Skip to content

Commit

Permalink
removed unused node trait ctor
Browse files Browse the repository at this point in the history
  • Loading branch information
shrink0r committed Oct 9, 2016
1 parent f3cc7a8 commit b8afe18
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/NodeTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,6 @@ trait NodeTrait
*/
private $suffix_idx;

/**
* @param int $start
* @param int $end
* @param array $children
* @param int $suffix_idx
* @param NodeInterface $suffix_link
*/
public function __construct(int $start, int $end, array $children, int $suffix_idx = -1, $suffix_link = null)
{
$this->start = $start;
$this->end = $end;
$this->children = $children;
$this->suffix_idx = $suffix_idx;
$this->suffix_link = $suffix_link;
}

/**
* @return int
*/
Expand Down

0 comments on commit b8afe18

Please sign in to comment.