Dhii/output-renderer-interface

View on GitHub
src/ContextAwareInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Dhii\Output;

/**
 * Something that can have a context retrieved from it.
 *
 * @since 0.1
 */
interface ContextAwareInterface
{
    /**
     * Retrieves the context.
     *
     * @since 0.1
     *
     * @return mixed The context.
     */
    public function getContext();
}