Annotations
Posted by ArchDemon 5 years ago
Fully annotations support. Not necessarily this syntax. The main thing that it was standardized.
```php
@Table(value="table_name")
class User {
@Column(value='column_name')
private name;
}
$reflection = new ReflectionClass(User::class);
$annotations = $reflection->getAnnotations();
```