Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
Table
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace Miniframe\ORM\Annotation;
4
5/**
6 * Table annotation
7 *
8 * @Annotation
9 */
10class Table
11{
12    /**
13     * Table name
14     *
15     * @var string
16     */
17    public $name;
18
19    /**
20     * Reference to a repository
21     *
22     * @var object|null
23     */
24    public $repository;
25}