| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | 40 | public function writeEvent( LoggingEvent $event, Bucket ...$buckets ) { |
|
| 25 | 40 | fwrite( |
|
| 26 | 40 | $this->stream, |
|
| 27 | 40 | json_encode( [ |
|
| 28 | 40 | 'date' => $this->timeTeller->getTime(), |
|
| 29 | 40 | 'eventName' => $event->getName(), |
|
| 30 | 40 | 'metadata' => $event->getMetaData(), |
|
| 31 | 40 | 'buckets' => $this->getBucketMap( $buckets ) |
|
| 32 | 40 | ] ) . "\n" |
|
| 33 | ); |
||
| 48 |