Files
drupal11-ddev/vendor/consolidation/robo/src/Task/ApiGen/Tasks.php
2025-10-08 11:39:17 -04:00

17 lines
316 B
PHP

<?php
namespace Robo\Task\ApiGen;
trait Tasks
{
/**
* @param null|string $pathToApiGen
*
* @return \Robo\Task\ApiGen\ApiGen|\Robo\Collection\CollectionBuilder
*/
protected function taskApiGen($pathToApiGen = null)
{
return $this->task(ApiGen::class, $pathToApiGen);
}
}