2019-02-21 12:28:32 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Bluesquare\StorageBundle\Annotations;
|
|
|
|
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Annotation
|
|
|
|
*/
|
|
|
|
class Storage implements ORM\Annotation
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $name;
|
|
|
|
|
|
|
|
/**
|
2019-02-21 13:20:53 +01:00
|
|
|
* @var mixed
|
2019-02-21 12:28:32 +01:00
|
|
|
*/
|
|
|
|
public $prefix = null;
|
|
|
|
|
|
|
|
/**
|
2019-02-21 13:20:53 +01:00
|
|
|
* @var mixed
|
2019-02-21 12:28:32 +01:00
|
|
|
*/
|
|
|
|
public $mode = null;
|
|
|
|
|
|
|
|
/**
|
2019-02-21 13:20:53 +01:00
|
|
|
* @var mixed
|
2019-02-21 12:28:32 +01:00
|
|
|
*/
|
|
|
|
public $mime = null;
|
|
|
|
}
|