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

13 lines
243 B
PHP

<?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);
}