Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
FileDeletionReport
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3declare(strict_types=1);
4
5class FileDeletionReport
6{
7  public function __construct(
8    public array $deleted = [],
9    public array $did_not_exist = [],
10    public array $not_allowed = [],
11    public array $was_used = [],
12    public array $incorrect_path = [],
13    public array $error = []
14  ) {
15  }
16}