Issues (121)

src/Model/Package/Package.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Inspirum\Balikobot\Model\Package;
6
7
use Inspirum\Arrayable\Model;
8
use Inspirum\Balikobot\Model\WithCarrierId;
9
10
/**
11
 * @extends \Inspirum\Arrayable\Model<string,mixed>
12
 */
13
interface Package extends Model, WithCarrierId
14
{
15
    public function getPackageId(): string;
16
17
    public function getBatchId(): string;
18
19
    public function getTrackUrl(): ?string;
20
21
    public function getLabelUrl(): ?string;
22
23
    public function getCarrierIdSwap(): ?string;
24
25
    /**
26
     * @return list<string>
0 ignored issues
show
The type Inspirum\Balikobot\Model\Package\list was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
27
     */
28
    public function getPieces(): array;
29
30
    public function getFinalCarrierId(): ?string;
31
32
    public function getFinalTrackUrl(): ?string;
33
34
    public function getBarcode(): ?string;
35
}
36