Closed JamesFreeman closed 3 years ago
I am experiencing the same problem with easyrdf 😢
<?php
use Doctum\Doctum;
use Symfony\Component\Finder\Finder;
$root = realpath(__DIR__ . "/..");
$iterator = Finder::create()
->files()
->name('*.php')
->exclude('arc')
->in($root . '/lib')
;
return new Doctum($iterator, [
'title' => 'EasyRdf API Documentation',
'build_dir' => "$root/docs/api",
'cache_dir' => "$root/doctumcache",
'include_parent_data' => true,
'default_opened_level' => 1,
]);
Thank you, sorry for that I will have a look soon
I will release a version shortly, currently adding more unit tests
5.2.1 is released :tada:
Thank you for the speedy fix 😀
Hi,
PHP Version: 7.4.5 Doctum version: 5.2.0
I upgraded to 5.2.0 from 5.1.0 this morning. Since this update I'm getting the following error:
Notice: Undefined index: template_dirs in .../vendor/code-lts/doctum/src/Doctum.php line 424
Our build file is as follows: