1 | <?php |
||
26 | use TYPO3\CMS\IndexedSearch\Worker\WorkerInterface; |
||
|
|||
27 | |||
28 | class CrawlerWorker implements WorkerInterface |
||
29 | { |
||
30 | /** |
||
31 | * CrawlerWorker constructor. |
||
32 | */ |
||
33 | public function __construct() |
||
34 | { |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @param object $caller Method caller |
||
39 | * @param array $conf Indexed search configuration |
||
40 | * @param string $file Relative Filename, relative to public web path. It can also be an absolute path as long as it is inside the lockRootPath (validated with \TYPO3\CMS\Core\Utility\GeneralUtility::isAbsPath()). Finally, if $contentTmpFile is set, this value can be anything, most likely a URL |
||
41 | * @param string $contentTmpFile Temporary file with the content to read it from (instead of $file). Used when the $file is a URL. |
||
42 | * @param string $fileExtension File extension for temporary file. |
||
43 | * @return mixed |
||
44 | */ |
||
45 | public function index(object $caller, array $conf, string $file, string $contentTmpFile = '', $fileExtension = '') |
||
60 | } |
||
61 | } |
||
62 |
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:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths