2019-08-21 20:13:00 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Ulmus\Annotation\Classes;
|
|
|
|
|
|
|
|
class Table implements \Ulmus\Annotation\Annotation {
|
|
|
|
|
|
|
|
public string $name;
|
|
|
|
|
2020-01-29 21:11:16 +00:00
|
|
|
public string $schema;
|
|
|
|
|
2020-02-13 03:56:53 +00:00
|
|
|
public string $adapter;
|
|
|
|
|
2019-08-21 20:13:00 +00:00
|
|
|
public function __construct($name = null)
|
|
|
|
{
|
|
|
|
if ( $name !== null ) {
|
|
|
|
$this->name = $name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|