/** * @param string $gitLabId * * @return $this */ public function setGitLabId($gitLabId) { Assertion::nullOrUuid($gitLabId); $this->gitLabId = $gitLabId; return $this; }
/** * Устанавливает id сущности * * @param string $id * * @return $this */ public function setId($id) { Assertion::nullOrUuid($id); $this->id = $id; return $this; }