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