From 14bf6809c713ae1b26d891cf0ebaf609ee44c9b2 Mon Sep 17 00:00:00 2001 From: Nicolas Ruflin Date: Mon, 21 Oct 2024 23:27:56 +0200 Subject: [PATCH] Fix documentation generation * Update download link for phpDocumentor.phar * Remove template to use default template for phpdocs --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fe0de3ee9..e5ce16618 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