Issues (54)

src/Service/Printing/PrintRequest.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace VasilDakov\Speedy\Service\Printing;
6
7
use VasilDakov\Speedy\Traits\ToArray;
8
9
/**
10
 * Class Client.
11
 *
12
 * @author Vasil Dakov <[email protected]>
13
 * @copyright 2009-2022 Neutrino.bg
14
 *
15
 * @version 1.0
16
 */
17
class PrintRequest
18
{
19
    use ToArray;
0 ignored issues
show
The trait VasilDakov\Speedy\Traits\ToArray requires the property $value which is not provided by VasilDakov\Speedy\Service\Printing\PrintRequest.
Loading history...
20
21 1
    public function __construct(public string $paperSize, public array $parcels)
22
    {
23
    }
24
}
25