jablonka.czprosek.czf

freenet-router

Subversion Repositories:
[/] [trunk/] [freenet-router/] [var/] [www/] [freenet-router/] [Framework/] [Views/] [View.php] - Rev 2

Compare with Previous - Blame - Download


<?php

namespace Phem\Views;

use Phem\Core\Collection;

/**
 *
 * @author kubapet
 */
abstract class View
{
    protected $template;
    protected $content;
    
    function __construct($template, Collection $content)
    {
        $this->template = $template;
        $this->content = $content;
    }

    public abstract function display();
}

Powered by WebSVN 2.2.1