Adds new possible suffix to check for executable, including the dot (.).
$finder = new ExecutableFinder(); $finder->addSuffix('.foo');
public function addSuffix(string $suffix) : void { $this->suffixes[] = $suffix; }