*/ final readonly class BovineSyncInventoryProcessor implements ProcessorInterface { public function __construct( private BovineInventorySyncer $syncer, ) {} public function process( mixed $data, Operation $operation, array $uriVariables = [], array $context = [], ): BovineSyncInventoryResult { return $this->syncer->sync(); } }