for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Finder\Spider\Registrator;
use Finder\Contracts\Spider\TargetManager;
use Stalker\Models\Project;
/**
* Run all script analysers and outputs their result.
*/
class ProjectRegistrator extends TargetManager
{
public function __construct($target, $parent = false)
parent::__construct($target, $parent);
if (!Project::where('location', $this->getLocation())->first()) {
Project::create($this->getArray());
}
protected function getArray()
public function registerAndReturnProject()