dlundgren/phagrancy

View on GitHub
src/Action/AllClear.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

/**
 * @file
 * Contains Phagrancy\Action\AllClear
 */

namespace Phagrancy\Action;

use Phagrancy\Http\Response\AllClear as AllClearResponse;

/**
 * Sends a generic 200 Response
 *
 * @package Phagrancy\Action
 */
class AllClear
{
    public function __invoke()
    {
        return new AllClearResponse;
    }
}