我正在使用 ApiGen 5.0.0-RC3,我无法弄清楚如何让它搜索.class
文件和.inc
文件以及.php
文件。
我的问题是双重的:首先,是否有可能让 ApiGen 识别.class
文件,其次,如果可能的话,人们将如何去做?
我找到了一种方法......但它很hacky。我把它贴在这里,希望它可以帮助别人。
该解决方案实际上不在 ApiGen 中,而是在roave/better-reflection中。具体来说,在文件src/SourceLocator/Type/FileIteratorSourceLocator.php
中,在方法getAggregatedSourceLocator
中,在匿名函数中。
代替:
private function getAggregatedSourceLocator() : AggregateSourceLocator
{
return $this->aggregateSourceLocator ?: new AggregateSourceLocator(array_values(array_filter(array_map(
function (\SplFileInfo $item) : ?SingleFileSourceLocator {
- if (! ($item->isFile() && pathinfo($item->getRealPath(), \PATHINFO_EXTENSION) === 'php')) {
return null;
}
return new SingleFileSourceLocator($item->getRealPath());
},
iterator_to_array($this->fileSystemIterator)
))));
}
和:
private function getAggregatedSourceLocator() : AggregateSourceLocator
{
return $this->aggregateSourceLocator ?: new AggregateSourceLocator(array_values(array_filter(array_map(
function (\SplFileInfo $item) : ?SingleFileSourceLocator {
+ $flag = in_array(pathinfo($item->getRealPath(), \PATHINFO_EXTENSION), ['php', 'class']);
+ if (! ($item->isFile() && $flag)) {
return null;
}
return new SingleFileSourceLocator($item->getRealPath());
},
iterator_to_array($this->fileSystemIterator)
))));
}
从提交 47b76f7 开始工作,版本有些