SAREhub/PHP_Client

View on GitHub
src/SAREhub/Client/Processor/NullProcessor.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SAREhub\Client\Processor;

use SAREhub\Client\Message\Exchange;

/**
 * Represents "dev/null" processor.
 */
class NullProcessor implements Processor
{

    public function process(Exchange $exchange)
    {

    }

    public function __toString()
    {
        return 'NOOP';
    }
}