Gitamin\Http\Controllers\Projects\NetworkController::index PHP Метод

index() публичный Метод

public index ( $owner, $project, $commitishPath )
    public function index($owner, $project, $commitishPath)
    {
        $repository = $project->getRepository();
        if ($commitishPath === null) {
            $commitishPath = $repository->getHead();
        }
        list($branch, $file) = $this->extractReference($repository, $commitishPath, $project->slug);
        return View::make('projects/network')->withOwner($owner)->withProject($project)->withBranch($branch)->withCommitishPath($commitishPath);
    }
NetworkController