mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-24 12:51:05 +01:00
13 lines
133 B
PHP
13 lines
133 B
PHP
|
<?php
|
||
|
|
||
|
namespace HTMLBuilder\Manager;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @since 2.3
|
||
|
*/
|
||
|
interface ManagerInterface
|
||
|
{
|
||
|
public function manage($options);
|
||
|
}
|