| @@ 231-240 (lines=10) @@ | ||
| 228 | return $this->issuetype; |
|
| 229 | } |
|
| 230 | ||
| 231 | public function setProjectKey($key) |
|
| 232 | { |
|
| 233 | if(is_null($this->project)) { |
|
| 234 | $this->project = new Project(); |
|
| 235 | } |
|
| 236 | ||
| 237 | $this->project->key = (string) $key; |
|
| 238 | ||
| 239 | return $this; |
|
| 240 | } |
|
| 241 | ||
| 242 | public function setProjectId($id) |
|
| 243 | { |
|
| @@ 242-251 (lines=10) @@ | ||
| 239 | return $this; |
|
| 240 | } |
|
| 241 | ||
| 242 | public function setProjectId($id) |
|
| 243 | { |
|
| 244 | if(is_null($this->project)) { |
|
| 245 | $this->project = new Project(); |
|
| 246 | } |
|
| 247 | ||
| 248 | $this->project->id = (string) $id; |
|
| 249 | ||
| 250 | return $this; |
|
| 251 | } |
|
| 252 | ||
| 253 | public function setSummary($summary) |
|
| 254 | { |
|