Issues (27)

src/EcontInterface.php (3 issues)

1
<?php
2
3
declare(strict_types=1);
4
5
namespace VasilDakov\Econt;
6
7
use VasilDakov\Econt\Request;
8
9
/**
10
 * EcontInterface
11
 *
12
 * @author Vasil Dakov <[email protected]>
13
 */
14
interface EcontInterface
15
{
16
    public function getClientProfiles(): string;
17
18
    public function getCountries(): string;
19
20
    public function getCities(Request\GetCitiesRequest $object): string;
0 ignored issues
show
The type VasilDakov\Econt\Request\GetCitiesRequest 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...
21
22
    public function getOffices(Request\GetOfficesRequest $object): string;
0 ignored issues
show
The type VasilDakov\Econt\Request\GetOfficesRequest 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 getStreets(Request\GetStreetsRequest $object): string;
0 ignored issues
show
The type VasilDakov\Econt\Request\GetStreetsRequest 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...
25
26
    public function getQuarters(Request\GetQuartersRequest $object): string;
27
28
29
    public function createLabel(array $data): string;
30
31
    public function createLabels(array $data): string;
32
33
    public function deleteLabels(array $data): string;
34
35
    public function getShipmentStatuses(array $data): string;
36
}
37