| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function getContent(UuidInterface $uuid) |
||
| 23 | { |
||
| 24 | return array( |
||
| 25 | array('', 'content:', 'time: ' . $uuid->getDateTime()->format('c')), |
||
| 26 | array('', '', 'clock: ' . $uuid->getClockSequence() . ' (usually random)'), |
||
| 27 | array('', '', 'node: ' . substr(chunk_split($uuid->getNodeHex(), 2, ':'), 0, -1)), |
||
| 28 | ); |
||
| 29 | } |
||
| 30 | } |
||
| 31 |