MatthiasMullie\Minify\CSS::canImportBySize PHP Method

canImportBySize() protected method

Check if file is small enough to be imported.
protected canImportBySize ( string $path ) : boolean
$path string The path to the file
return boolean
    protected function canImportBySize($path)
    {
        return ($size = @filesize($path)) && $size <= $this->maxImportSize * 1024;
    }