format('U'); $properties['watched'] = Carbon::now(); $properties['output'] = match ($properties['type']) { Type::Movie => sprintf( '%s-%d-%s.json', Str::slug($properties['showTitle'] ?? uniqid()), $properties['movieYear'], $n, ), default => sprintf( '%s-%dx%02d-%s.json', Str::slug($properties['showTitle'] ?? uniqid()), $properties['season'], $properties['episode'], $n, ), }; return $properties; } }