mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-11 01:07:39 +08:00
13 lines
172 B
PHP
13 lines
172 B
PHP
|
<?php
|
||
|
|
||
|
namespace PHPThumb;
|
||
|
|
||
|
interface PluginInterface
|
||
|
{
|
||
|
/**
|
||
|
* @param PHPThumb $phpthumb
|
||
|
* @return PHPThumb
|
||
|
*/
|
||
|
public function execute($phpthumb);
|
||
|
}
|