1 | <?php |
||
20 | class Table extends AbstractTable |
||
21 | { |
||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $rawName; |
||
26 | |||
27 | /** |
||
28 | * @param string $name |
||
29 | * @return $this |
||
30 | */ |
||
31 | protected function setName($name) |
||
38 | |||
39 | /** |
||
40 | * @return \Zend\Db\ResultSet\ResultSet |
||
41 | */ |
||
42 | protected function showCreate() |
||
46 | |||
47 | /** |
||
48 | * @return \Zend\Db\ResultSet\ResultSet |
||
49 | */ |
||
50 | protected function showColumns() |
||
54 | |||
55 | /** |
||
56 | * @return \Zend\Db\ResultSet\ResultSet |
||
57 | */ |
||
58 | protected function select() |
||
62 | |||
63 | /** |
||
64 | * @return Columns |
||
65 | */ |
||
66 | protected function createColumns() |
||
70 | |||
71 | /** |
||
72 | * @return array[Triggers, Procedure] |
||
|
|||
73 | */ |
||
74 | protected function createExtras() |
||
81 | |||
82 | /** |
||
83 | * @return string |
||
84 | */ |
||
85 | protected function create() |
||
106 | |||
107 | /** |
||
108 | * @return string |
||
109 | */ |
||
110 | protected function startInsert() |
||
115 | |||
116 | /** |
||
117 | * @return string |
||
118 | */ |
||
119 | protected function continueInsert() |
||
123 | |||
124 | /** |
||
125 | * @return string |
||
126 | */ |
||
127 | protected function finishInsert() |
||
131 | } |
||
132 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.