Acacha\Llum\Filesystem\Filesystem::make PHP Метод

make() публичный метод

Create file with provided content if not exists.
public make ( $file, $content )
$file
$content
    public function make($file, $content)
    {
        if ($this->exists($file)) {
            throw new FileAlreadyExists();
        }
        $this->put($file, $content);
    }