themichaelhall/bluemvc-fakes

View on GitHub
src/FakeResponse.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * This file is a part of the bluemvc-fakes package.
 *
 * Read more at https://bluemvc.com/
 */

declare(strict_types=1);

namespace BlueMvc\Fakes;

use BlueMvc\Core\Base\AbstractResponse;

/**
 * BlueMvc fake response class.
 *
 * @since 1.0.0
 */
class FakeResponse extends AbstractResponse
{
    /**
     * Constructs the fake response.
     *
     * @since 1.0.0
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Does nothing.
     *
     * @since 1.0.0
     */
    public function output(): void
    {
    }
}