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