PHP code example of sweetchuck / robo-cdd
1. Go to this page and download the library: Download sweetchuck/robo-cdd library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
sweetchuck / robo-cdd example snippets
use Robo\Collection\CollectionBuilder;
use Robo\State\Data as RoboStateData;
use Sweetchuck\Robo\cdd\CircularDependencyTaskLoader;
class RoboFile extends \Robo\Tasks
{
use CircularDependencyTaskLoader;
/**
* @command validate:module-dependencies
*/
public function validateModuleDependencies(): CollectionBuilder
{
return $this
->collectionBuilder()
->addCode(function (RoboStateData $data): int {
$data['moduleDependencies'] = $this->collectModuleDependencies();
return 0;
})
->addTask(
$this
->taskCircularDependencyDetector()
->setItemLabel('module')
->deferTaskConfiguration('setItems', 'moduleDependencies')
);
}
protected function collectModuleDependencies(): array
{
return [
'a' => ['b'],
'b' => ['c'],
'c' => ['a'],
'd' => ['e'],
'e' => ['d'],
];
}
}