ApiGen 5 是否支持多个文件扩展名?
Does ApiGen 5 support multiple file extensions?
我正在使用 ApiGen 5.0.0-RC3,我不知道如何让它搜索 .class
文件和 .inc
文件以及 .php
文件。
我的问题是双重的:首先,是否有可能让 ApiGen 识别 .class
文件,其次,如果可能,人们将如何去做?
我找到了一种方法...但它很老套。我将其张贴在这里,希望它可以帮助其他人。
解决方案实际上并不在 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 开始工作,版本 something
我正在使用 ApiGen 5.0.0-RC3,我不知道如何让它搜索 .class
文件和 .inc
文件以及 .php
文件。
我的问题是双重的:首先,是否有可能让 ApiGen 识别 .class
文件,其次,如果可能,人们将如何去做?
我找到了一种方法...但它很老套。我将其张贴在这里,希望它可以帮助其他人。
解决方案实际上并不在 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 开始工作,版本 something