for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Webfactor\Laravel\Generators\Recipes;
use Webfactor\Laravel\Generators\Contracts\OpenInIdeAbstract;
use Webfactor\Laravel\Generators\Contracts\OpenInIdeInterface;
class VSCodeOpener extends OpenInIdeAbstract implements OpenInIdeInterface
{
public function open()
foreach ($this->files as $file) {
exec('code ' . $file->getPathname());
}