Issues (138)

Migrations/Code/ClassAliasMap.php (3 issues)

1
<?php
2
return [
3
    // tx_crawler_api can be removed when dropping support for TYPO3 9 LTS & 10 LTS
4
    'tx_crawler_api' => \AOE\Crawler\Api\CrawlerApi::class,
5
    'tx_crawler_domain_events_dispatcher' => \AOE\Crawler\Event\EventDispatcher::class,
0 ignored issues
show
The type AOE\Crawler\Event\EventDispatcher 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...
6
    'tx_crawler_domain_events_observer' => \AOE\Crawler\Event\EventObserverInterface::class,
0 ignored issues
show
The type AOE\Crawler\Event\EventObserverInterface 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...
7
    'tx_crawler_domain_process' => \AOE\Crawler\Domain\Model\Process::class,
8
    'tx_crawler_domain_process_collection' => \AOE\Crawler\Domain\Model\ProcessCollection::class,
9
    'tx_crawler_domain_process_manager' => \AOE\Crawler\Service\ProcessService::class,
10
    'tx_crawler_domain_process_repository' => \AOE\Crawler\Domain\Repository\ProcessRepository::class,
11
    'tx_crawler_domain_queue_entry' => \AOE\Crawler\Domain\Model\Queue::class,
12
    'tx_crawler_domain_queue_repository' => \AOE\Crawler\Domain\Repository\QueueRepository::class,
13
    'tx_crawler_domain_reason' => \AOE\Crawler\Domain\Model\Reason::class,
14
    'tx_crawler_hooks_processCleanUp' => \AOE\Crawler\Hooks\ProcessCleanUpHook::class,
15
    'tx_crawler_hooks_tsfe' => \AOE\Crawler\Hooks\TsfeHook::class,
0 ignored issues
show
The type AOE\Crawler\Hooks\TsfeHook 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...
16
    'tx_crawler_lib' => \AOE\Crawler\Controller\CrawlerController::class,
17
    'tx_crawler_modfunc1' => \AOE\Crawler\Backend\BackendModule::class,
18
    'tx_crawler_tcafunc' => \AOE\Crawler\Utility\TcaUtility::class,
19
];
20