The \Magento\Tax\Model\Quote\ToOrderConverter::beforeConvert() method can be simplified by returning void instead of an array and removing the unused $additional argument

This can be simplified to:

/**
 * @param QuoteAddressToOrder $subject
 * @param QuoteAddress $address
 * @return void
 */
public function beforeConvert(QuoteAddressToOrder $subject, QuoteAddress $address)
{
	$this->quoteAddress = $address;
}