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\ProcessConfigFile;
/**
* Trait LoadProcessConfigFileTasks.
*/
trait LoadProcessConfigFileTasks
{
* @param mixed $source
* @param mixed $destination
*
* @return \Robo\Collection\CollectionBuilder
public function taskProcessConfigFile($source, $destination)
return $this->task(ProcessConfigFile::class, $source, $destination);
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(ProcessConfigFile::class, $source, $destination);
}