REBELinBLUE\Deployer\Http\Controllers\Admin\ProjectController::store PHP Method

store() public method

Store a newly created project in storage.
public store ( StoreProjectRequest $request ) : Model
$request REBELinBLUE\Deployer\Http\Requests\StoreProjectRequest
return Illuminate\Database\Eloquent\Model
    public function store(StoreProjectRequest $request)
    {
        return $this->repository->create($request->only('name', 'repository', 'branch', 'group_id', 'builds_to_keep', 'url', 'build_url', 'template_id', 'allow_other_branch', 'include_dev', 'private_key'));
    }