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