samsonos/php_core

View on GitHub
src/deprecated/IViewable.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * Created by PhpStorm.
 * User: egorov
 * Date: 12.12.2014
 * Time: 9:50
 */
namespace samson\core;

use samsonframework\core\ViewInterface;

/**
 * Generic view rendering interface defining
 * all main view context operations.
 * @package samson\core
 * @author Vitaly Iegorov <egorov@samsonos.com>
 * @deprecated Use samsonframework\core\ViewInterface
 */
interface IViewable extends ViewInterface
{

}