aboutsummaryrefslogtreecommitdiffstats
path: root/include/classes/Debugging/Resource/Stylesheet.php
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-10-24 15:11:14 +0200
committerThomas Lange <code@nerdmind.de>2021-10-24 15:14:12 +0200
commit370ea75a355765f37ef70fa228c1e10be21db59d (patch)
tree21fde3bd0c1158a9ffd8250f382662c5564f2a70 /include/classes/Debugging/Resource/Stylesheet.php
parent6a45789731c75db0c782ae2d0bdc478aa7ccb6ad (diff)
downloadbigpipe-370ea75a355765f37ef70fa228c1e10be21db59d.tar.gz
bigpipe-370ea75a355765f37ef70fa228c1e10be21db59d.tar.xz
bigpipe-370ea75a355765f37ef70fa228c1e10be21db59d.zip
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.
Diffstat (limited to 'include/classes/Debugging/Resource/Stylesheet.php')
-rw-r--r--include/classes/Debugging/Resource/Stylesheet.php2
1 files changed, 1 insertions, 1 deletions
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) {