| Conditions | 3 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | public function __toString() |
||
| 38 | { |
||
| 39 | if ($this->operator === 'pr') { |
||
| 40 | return sprintf('%s %s', $this->attributePath, $this->operator); |
||
| 41 | } else { |
||
| 42 | return sprintf('%s %s %s', $this->attributePath, $this->operator, $this->compareValue instanceof \DateTime ? $this->compareValue->format('Y-m-d\TH:i:s\Z') : $this->compareValue); |
||
| 43 | } |
||
| 44 | } |
||
| 45 | |||
| 53 |