1 | <?php |
||
2 | |||
3 | namespace Bmatovu\Ussd\Providers; |
||
4 | |||
5 | use Bmatovu\Ussd\Contracts\ListProvider; |
||
6 | use Bmatovu\Ussd\Store; |
||
7 | use Bmatovu\Ussd\Traits\Attributes; |
||
8 | use Bmatovu\Ussd\Traits\Variables; |
||
9 | |||
10 | abstract class BaseProvider implements ListProvider |
||
11 | { |
||
12 | use Attributes; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
13 | use Variables; |
||
0 ignored issues
–
show
|
|||
14 | |||
15 | protected Store $store; |
||
16 | |||
17 | public function __construct(Store $store) |
||
18 | { |
||
19 | $this->store = $store; |
||
20 | } |
||
21 | |||
22 | // abstract public function load(): array; |
||
23 | } |
||
24 |