version 1.0

This commit is contained in:
2021-07-07 10:24:05 +02:00
commit 941a149097
17 changed files with 1069 additions and 0 deletions

View 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;
}