Eloquent\Phony\Difference\DifferenceSequenceMatcher::__construct PHP Method

__construct() public method

Construct a new sequence matcher.
public __construct ( array $a, array $b )
$a array An array containing the sequence to compare against.
$b array An array containing the sequence to compare.
    public function __construct(array $a, array $b)
    {
        $this->a = $a;
        $this->b = $b;
        $this->chainB();
    }