v1/vendor/phpowermove/docblock/sami.php

16 lines
282 B
PHP

<?php
use Sami\Sami;
use Symfony\Component\Finder\Finder;
$iterator = Finder::create()
->files()
->name('*.php')
->in(__DIR__ . '/src')
;
return new Sami($iterator, [
'title' => 'DocBlock API Documentation',
'build_dir' => __DIR__ . '/api',
'default_opened_level' => 2
]);