ulmus/src/Annotation/Classes/Table.php

20 lines
321 B
PHP
Raw Normal View History

2019-08-21 20:13:00 +00:00
<?php
namespace Ulmus\Annotation\Classes;
class Table implements \Ulmus\Annotation\Annotation {
public string $name;
public string $schema;
public string $adapter;
2019-08-21 20:13:00 +00:00
public function __construct($name = null)
{
if ( $name !== null ) {
$this->name = $name;
}
}
}