1 | <?php |
||
7 | trait FluentColumns |
||
8 | { |
||
9 | /* |
||
10 | |-------------------------------------------------------------------------- |
||
11 | | Methods for providing Fluent Columns |
||
12 | |-------------------------------------------------------------------------- |
||
13 | */ |
||
14 | |||
15 | public function addColumns(array $columns) |
||
21 | |||
22 | public function addColumn(CrudColumnInterface $column) |
||
26 | } |
||
27 |
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@return
annotation as described here.