for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace PhpTaskman\Core\Robo\Task\CollectionFactory;
/**
* Trait LoadCollectionFactoryTasks.
*/
trait LoadCollectionFactoryTasks
{
* @return \Robo\Collection\CollectionBuilder
public function taskCollectionFactory(array $tasks, array $options = [])
return $this->task(CollectionFactory::class, $tasks, $options);
task()
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
return $this->/** @scrutinizer ignore-call */ task(CollectionFactory::class, $tasks, $options);
}