remove unnecessary implode()
This commit is contained in:
parent
7a94e43801
commit
350bb513a0
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ class TwingleProject {
|
||||||
// Give information back if project already exists
|
// Give information back if project already exists
|
||||||
return [
|
return [
|
||||||
'title' => $this->values['title'],
|
'title' => $this->values['title'],
|
||||||
'id' => is_array($this->id) ? implode(', ', $this->id) : $this->id,
|
'id' => $this->id,
|
||||||
'project_id' => $this->values['id'],
|
'project_id' => $this->values['id'],
|
||||||
'state' => 'exists',
|
'state' => 'exists',
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue