| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 9 | 
| Code Lines | 4 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 19 | public function log(  | 
            ||
| 20 | string $trackableIdentifier,  | 
            ||
| 21 | string $trackableType,  | 
            ||
| 22 | string $statusIdentifier  | 
            ||
| 23 |     ) { | 
            ||
| 24 | return parent::create([  | 
            ||
| 25 | static::COLUMN_TRACKABLE_IDENTIFIER => $trackableIdentifier,  | 
            ||
| 26 | static::COLUMN_TRACKABLE_TYPE => $trackableType,  | 
            ||
| 27 | static::COLUMN_STATUS_IDENTIFIER => $statusIdentifier,  | 
            ||
| 28 | ]);  | 
            ||
| 31 |