mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
11 lines
203 B
PHP
11 lines
203 B
PHP
<?php
|
|
/**
|
|
* Interface for dynamic texts functions/classes
|
|
* @author lime-nk Michal Kurzeja
|
|
*
|
|
*/
|
|
interface dFunctionInterface
|
|
{
|
|
public function __construct();
|
|
public function run($args);
|
|
} |