westdc-zf1/vendor/Sookon/File/Event/FileEvent.php

15 lines
260 B
PHP

<?php
namespace Sookon\File\Event;
use Zend\EventManager\EventInterface;
interface FileEvent
{
public function checkExt(EventInterface $e);
public function checkSize(EventInterface $e);
public function makeThumb(EventInterface $e);
}