- Some bugfixes were made within annotations. - Added a new Object Instanciator which allows to manipulate and define how an object from an entity must be instanciated with given value.
18 lines
288 B
PHP
18 lines
288 B
PHP
<?php
|
|
|
|
namespace Ulmus\Annotation\Classes;
|
|
|
|
class Table implements \Ulmus\Annotation\Annotation {
|
|
|
|
public string $name;
|
|
|
|
public string $schema;
|
|
|
|
public function __construct($name = null)
|
|
{
|
|
if ( $name !== null ) {
|
|
$this->name = $name;
|
|
}
|
|
}
|
|
}
|