From b538d6d24619c185007f39231da7d8ee2dcd692f Mon Sep 17 00:00:00 2001 From: Nicolas Ruflin Date: Tue, 22 Oct 2024 11:22:14 +0200 Subject: [PATCH] Fix documentation generation (#2230) * Update download link for phpDocumentor.phar * Remove template to use default template for phpdocs * Adjust path to src --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9d3e51d76..8fac653d0 100644 --- a/Makefile +++ b/Makefile @@ -59,12 +59,12 @@ run-coveralls: tools/php-coveralls.phar -v tools/phpdocumentor.phar: - curl https://gitreleases.dev/gh/phpDocumentor/phpDocumentor/latest/phpDocumentor.phar -o tools/phpdocumentor.phar --silent -L; \ + curl http://www.phpdoc.org/phpDocumentor.phar -o tools/phpdocumentor.phar --silent -L; \ chmod +x tools/phpdocumentor.phar .PHONY: run-phpdoc run-phpdoc: tools/phpdocumentor.phar - tools/phpdocumentor.phar --directory=lib --target=build/docs --template=clean + tools/phpdocumentor.phar --directory=src --target=build/docs ## ## Docker commands