westdc-zf1/application/module/Files/Event/FileEvent.php

13 lines
243 B
PHP
Raw Normal View History

2013-10-28 14:54:21 +00:00
<?php
namespace Files\Event;
interface FileEvent
{
public function checkExt(\Zend_EventManager_Event $e);
public function checkSize(\Zend_EventManager_Event $e);
public function makeThumb(\Zend_EventManager_Event $e);
}