Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
49 | 1 | public function getFilters(): array |
|
50 | { |
||
51 | return [ |
||
52 | 1 | 'id' => $this->workflow->getId(), |
|
53 | 1 | 'name' => $this->workflow->getName(), |
|
54 | 1 | "group" => $this->workflow->getGroup(), |
|
55 | 1 | 'content' => base64_encode($this->workflow->getXml()->saveXML()), |
|
56 | 1 | 'comment' => $this->workflow->getComment() |
|
57 | ]; |
||
76 |