diff options
author | Thomas Lange <code@nerdmind.de> | 2021-10-24 17:23:44 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-10-24 17:33:14 +0200 |
commit | 76cdd118d68bda3b7b29b192c7bf3d6e02bd6079 (patch) | |
tree | ec9159bd6ea23c9319d2fec58d182aeeb08d2c88 /include/classes/Debugging/Pagelet.php | |
parent | 10c0d433f4d2557bd57cf1f2e3b2bbd760ba804c (diff) | |
download | bigpipe-76cdd118d68bda3b7b29b192c7bf3d6e02bd6079.tar.gz bigpipe-76cdd118d68bda3b7b29b192c7bf3d6e02bd6079.tar.xz bigpipe-76cdd118d68bda3b7b29b192c7bf3d6e02bd6079.zip |
Add parameter and return types for all PHP methods
Diffstat (limited to 'include/classes/Debugging/Pagelet.php')
-rw-r--r-- | include/classes/Debugging/Pagelet.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/classes/Debugging/Pagelet.php b/include/classes/Debugging/Pagelet.php index e4e15f6..41eeb8f 100644 --- a/include/classes/Debugging/Pagelet.php +++ b/include/classes/Debugging/Pagelet.php @@ -2,7 +2,7 @@ namespace Debugging; class Pagelet extends \BigPipe\Pagelet { - public function __construct($customID = NULL, $priority = self::PRIORITY_NORMAL) { + public function __construct(string $customID = NULL, int $priority = self::PRIORITY_NORMAL) { parent::__construct(...func_get_args()); foreach(['INIT', 'LOADCSS', 'HTML', 'LOADJS', 'DONE'] as $phase) { |