Gitlab\Model\Branch::__construct PHP Method

__construct() public method

public __construct ( Project $project, string $name = null, Gitlab\Client $client = null )
$project Project
$name string
$client Gitlab\Client
    public function __construct(Project $project, $name = null, Client $client = null)
    {
        $this->setClient($client);
        $this->setData('project', $project);
        $this->setData('name', $name);
    }