Spatie\Php7to5\Converter::__construct PHP Method

__construct() public method

public __construct ( string $pathToPhp7Code )
$pathToPhp7Code string
    public function __construct($pathToPhp7Code)
    {
        if (!file_exists($pathToPhp7Code)) {
            throw InvalidParameter::fileDoesNotExist($pathToPhp7Code);
        }
        $this->pathToPhp7Code = $pathToPhp7Code;
    }