Amranidev\ScaffoldInterface\Filesystem\Filesystem::make PHP Method

make() public method

Make a file.
public make ( $file, $content ) : integer
$file
$content
return integer
    public function make($file, $content)
    {
        if ($this->exists($file)) {
            throw new FileAlreadyExists();
        }
        return file_put_contents($file, $content);
    }