phug-php/util

View on GitHub
Util/ModuleInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Phug\Util;

/**
 * Interface ModuleInterface.
 */
interface ModuleInterface extends OptionInterface
{
    public function getContainer();

    public function attachEvents();

    public function detachEvents();
}