aboutsummaryrefslogtreecommitdiffstats
path: root/include/classes/BigPipe/Resource/Stylesheet.php
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-10-24 17:38:14 +0200
committerThomas Lange <code@nerdmind.de>2021-10-24 18:04:55 +0200
commit1ccf59ac7f31751c93e58557af55cd405037f7fa (patch)
tree25247b7859511d357dcaa39610fa7b464cb4147b /include/classes/BigPipe/Resource/Stylesheet.php
parent76cdd118d68bda3b7b29b192c7bf3d6e02bd6079 (diff)
downloadbigpipe-1ccf59ac7f31751c93e58557af55cd405037f7fa.tar.gz
bigpipe-1ccf59ac7f31751c93e58557af55cd405037f7fa.tar.xz
bigpipe-1ccf59ac7f31751c93e58557af55cd405037f7fa.zip
Rename several properties and method parameters
* Rename "ID" property of the Item class to "id" * Rename "customID" constructor parameter to "id" * Rename "resourceURL" property of the Resource class to "url" * Rename "resourceURL" constructor parameter to "url"
Diffstat (limited to 'include/classes/BigPipe/Resource/Stylesheet.php')
-rw-r--r--include/classes/BigPipe/Resource/Stylesheet.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/classes/BigPipe/Resource/Stylesheet.php b/include/classes/BigPipe/Resource/Stylesheet.php
index daa7561..a5998df 100644
--- a/include/classes/BigPipe/Resource/Stylesheet.php
+++ b/include/classes/BigPipe/Resource/Stylesheet.php
@@ -13,8 +13,8 @@ class Stylesheet extends \BigPipe\Resource {
#===============================================================================
# Build resource
#===============================================================================
- public function __construct(string $customID, string $resourceURL) {
- parent::__construct($customID, parent::TYPE_STYLESHEET, $resourceURL);
+ public function __construct(string $id, string $url) {
+ parent::__construct($id, parent::TYPE_STYLESHEET, $url);
}
#===============================================================================