<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

/**
 * PHP Code Mess v1.3.3 tool wrapper
 */
declare(strict_types=1);

namespace Magento\TestFramework\CodingStandard\Tool;

use PHPMD\Console\Output;

class CodeMessOutput extends Output
{
    /**
     * @inheritdoc
     */
    protected function doWrite(string $message): void
    {
        // TODO: Implement doWrite() method.
    }
}
