1 | <?php |
||
9 | class UploadFieldNotesDataProvider |
||
10 | { |
||
11 | /** |
||
12 | * @var \AppBundle\Service\Interfaces\FieldNoteServiceInterface |
||
13 | */ |
||
14 | protected $fieldNoteService; |
||
15 | |||
16 | /** |
||
17 | * @var int |
||
18 | */ |
||
19 | protected $userId; |
||
20 | |||
21 | /** |
||
22 | * UploadFieldNotesDataProvider constructor. |
||
23 | * |
||
24 | * @param \AppBundle\Service\Interfaces\FieldNoteServiceInterface $fieldNoteService |
||
25 | */ |
||
26 | public function __construct(FieldNoteServiceInterface $fieldNoteService) |
||
30 | |||
31 | /** |
||
32 | * @param int $userId |
||
33 | * |
||
34 | * @return array |
||
35 | */ |
||
36 | public function getData($userId) |
||
42 | } |
||
43 |