![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/codeception/stub/ |
<?php declare(strict_types=1); use Robo\Tasks; require_once 'vendor/autoload.php'; /** * This is project's console commands configuration for Robo task runner. * * @see https://robo.li/ */ class RoboFile extends Tasks { protected $docs = [ 'docs/Stub.md' => 'Codeception\Stub', 'docs/Expected.md' => 'Codeception\Stub\Expected', 'docs/StubTrait.md' => 'Codeception\Test\Feature\Stub', ]; public function docs() { foreach ($this->docs as $file => $class) { if (!class_exists($class, true) && !trait_exists($class, true)) { throw new Exception('ups'); } $this->say("Here goes, $class"); $this->taskGenDoc($file) ->docClass($class) ->filterMethods(function(ReflectionMethod $method) { if ($method->isConstructor() or $method->isDestructor()) return false; if (!$method->isPublic()) return false; if (strpos($method->name, '_') === 0) return false; if (strpos($method->name, 'stub') === 0) return false; return true; }) ->processMethodDocBlock( function (ReflectionMethod $m, $doc) { $doc = str_replace(array('@since'), array(' * available since version'), $doc); $doc = str_replace(array(' @', "\n@"), array(" * ", "\n * "), $doc); return $doc; }) ->processProperty(false) ->run(); } } }