Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class ExcelView implements FromView |
||
9 | { |
||
10 | /** |
||
11 | * @var View |
||
12 | */ |
||
13 | private $view; |
||
14 | |||
15 | /** |
||
16 | * Excel constructor. |
||
17 | * |
||
18 | * @param View $view |
||
19 | */ |
||
20 | public function __construct(View $view) |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * Return a used in the Excel export. |
||
27 | * |
||
28 | * @return View |
||
29 | */ |
||
30 | public function view(): View |
||
35 |