Issues (121)

src/Model/Package/PackageCollection.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\Collection;
8
use Inspirum\Balikobot\Model\PerCarrierCollection;
9
10
/**
11
 * @extends \Inspirum\Arrayable\Collection<string,mixed,int,\Inspirum\Balikobot\Model\Package\Package>
12
 * @extends \Inspirum\Balikobot\Model\PerCarrierCollection<\Inspirum\Balikobot\Model\Package\Package>
13
 */
14
interface PackageCollection extends Collection, PerCarrierCollection
15
{
16
    /**
17
     * @return array<\Inspirum\Balikobot\Model\Package\Package>
18
     */
19
    public function getPackages(): array;
20
21
    /**
22
     * @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...
23
     */
24
    public function getPackageIds(): array;
25
26
    public function getLabelsUrl(): ?string;
27
}
28