peryoudow/vendor/league/plates/src/Extension/ExtensionInterface.php

14 lines
195 B
PHP
Raw Normal View History

2020-01-06 14:14:28 +01:00
<?php
namespace League\Plates\Extension;
use League\Plates\Engine;
/**
* A common interface for extensions.
*/
interface ExtensionInterface
{
public function register(Engine $engine);
}