1 | <?php |
||
10 | class UserElement extends CRUDElement |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $userModel; |
||
16 | |||
17 | public function __construct($options, $userModel) |
||
22 | |||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | protected function initDataGrid(DataGridFactoryInterface $factory) |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | protected function initDataSource(DataSourceFactoryInterface $factory) |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | protected function initForm(FormFactoryInterface $factory, $data = null) |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | public function getId() |
||
54 | |||
55 | /** |
||
56 | * {@inheritdoc} |
||
57 | */ |
||
58 | public function getClassName() |
||
62 | } |
||
63 |
This check looks for function calls that miss required arguments.