pharext\License::readLicense PHP Method

readLicense() public method

public readLicense ( $file )
    public function readLicense($file)
    {
        $text = file_get_contents($file);
        switch (strtolower(pathinfo($file, PATHINFO_EXTENSION))) {
            case "htm":
            case "html":
                $text = strip_tags($text);
                break;
        }
        return $text;
    }