Sirius\Upload\Container\Local::has PHP Method

has() public method

This will check if a file is in the container
public has ( string $file ) : boolean
$file string
return boolean
    public function has($file)
    {
        return $file && file_exists($this->baseDirectory . $file);
    }