13 lines
180 B
PHP
13 lines
180 B
PHP
|
<?php
|
||
|
namespace Core\annotations;
|
||
|
|
||
|
use Doctrine\Common\Annotations\Annotation\Target;
|
||
|
|
||
|
/**
|
||
|
* @Annotation
|
||
|
* @Target({"PROPERTY"})
|
||
|
*/
|
||
|
class DB
|
||
|
{
|
||
|
public $source = 'default';
|
||
|
}
|