<?php
namespace ConcreteCoreFileEvent;
use ConcreteCoreFileVersion;
use SymfonyComponentEventDispatcherEvent as AbstractEvent;
class FileVersion extends AbstractEvent
{
protected $fv;
public function __construct(Version $fv)
{
$this->fv = $fv;
}
public function getFileVersionObject()
{
return $this->fv;
}
}