<?php
namespace ConcreteCoreFileEvent;
use ConcreteCoreFileFile as ConcreteFile;
use SymfonyComponentEventDispatcherEvent as AbstractEvent;
class File extends AbstractEvent
{
protected $f;
public function __construct(ConcreteFile $f)
{
$this->f = $f;
}
public function getFileObject()
{
return $this->f;
}
}