Dave Mc Nicoll 5bd60129ea - Added a new MsSQL adapter
- 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.
2020-01-29 16:11:16 -05:00

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