Files
drupal11-ddev/vendor/consolidation/robo/src/Task/ApiGen/Tasks.php

17 lines
316 B
PHP
Raw Normal View History

2025-10-08 11:39:17 -04:00
<?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);
}
}