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 SublimeOpener extends OpenInIdeAbstract implements OpenInIdeInterface
{
/**
* Opens all given files in Sublime
*/
public function open()
foreach ($this->files as $file) {
exec('subl ' . $file->getPathname());
}