for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Http\Helpers\Installer;
class InstalledFileManager
{
/**
* Create installed file.
*
* @return int
*/
public function create()
file_put_contents(storage_path('installed'), '');
}
* Update installed file.
public function update()
return $this->create();