1 | <?php |
||
5 | trait NamespacedEntity |
||
6 | { |
||
7 | /** |
||
8 | * Returns the entity namespace. |
||
9 | * |
||
10 | * @return string |
||
11 | */ |
||
12 | public static function getEntityNamespace() |
||
16 | |||
17 | /** |
||
18 | * Sets the entity namespace. |
||
19 | * |
||
20 | * @param string $namespace |
||
21 | * @return void |
||
22 | */ |
||
23 | public static function setEntityNamespace($namespace) |
||
27 | } |
||
28 |