SimilarText\Finder::__construct PHP Method

__construct() public method

Finder constructor.
public __construct ( string $needle, array $haystack ) : void
$needle string
$haystack array
return void
    public function __construct($needle, $haystack)
    {
        $this->needle = $needle;
        $this->haystack = $haystack;
    }