| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 39 | public function createElement(\DomDocument $document, NodeInterface $node) |
||
| 40 | { |
||
| 41 | $date = is_null($node->getLastModified()) ? new \DateTime():$node->getLastModified(); |
||
| 42 | |||
| 43 | return $document->createElement( |
||
| 44 | $this->getNodeName(), |
||
| 45 | $date->format($this->getDefaultFormat()) |
||
| 46 | ); |
||
| 47 | } |
||
| 48 | } |
||
| 49 |