You've already forked symfony-storage
version 1.0
This commit is contained in:
31
StorageBundle/Annotations/Storage.php
Normal file
31
StorageBundle/Annotations/Storage.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace Bluesquare\StorageBundle\Annotations;
|
||||
|
||||
use Doctrine\ORM\Mapping as ORM;
|
||||
|
||||
/**
|
||||
* @Annotation
|
||||
*/
|
||||
class Storage implements ORM\Annotation
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $name;
|
||||
|
||||
/**
|
||||
* @var mixed
|
||||
*/
|
||||
public $prefix = null;
|
||||
|
||||
/**
|
||||
* @var mixed
|
||||
*/
|
||||
public $mode = null;
|
||||
|
||||
/**
|
||||
* @var mixed
|
||||
*/
|
||||
public $mime = null;
|
||||
}
|
||||
Reference in New Issue
Block a user