From 370ea75a355765f37ef70fa228c1e10be21db59d Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Sun, 24 Oct 2021 15:11:14 +0200 Subject: Fix constructor parameters for Resource classes The first parameter for the constructor of the Resource classes should not be optional if the next parameters obviously are non-optional. The optional parameters (if any) must come after the required parameters. --- include/classes/Debugging/Resource/Stylesheet.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/classes/Debugging/Resource/Stylesheet.php') diff --git a/include/classes/Debugging/Resource/Stylesheet.php b/include/classes/Debugging/Resource/Stylesheet.php index 4efe610..39ce8a4 100644 --- a/include/classes/Debugging/Resource/Stylesheet.php +++ b/include/classes/Debugging/Resource/Stylesheet.php @@ -2,7 +2,7 @@ namespace Debugging\Resource; class Stylesheet extends \BigPipe\Resource\Stylesheet { - public function __construct($customID = NULL, $resourceURL) { + public function __construct($customID, $resourceURL) { parent::__construct(...func_get_args()); foreach(['INIT', 'LOAD', 'DONE'] as $phase) { -- cgit v1.2.3