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