diff options
author | Thomas Lange <code@nerdmind.de> | 2021-10-24 17:38:14 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-10-24 18:04:55 +0200 |
commit | 1ccf59ac7f31751c93e58557af55cd405037f7fa (patch) | |
tree | 25247b7859511d357dcaa39610fa7b464cb4147b /include/classes/BigPipe/Item.php | |
parent | 76cdd118d68bda3b7b29b192c7bf3d6e02bd6079 (diff) | |
download | bigpipe-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/Item.php')
-rw-r--r-- | include/classes/BigPipe/Item.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/classes/BigPipe/Item.php b/include/classes/BigPipe/Item.php index 126cd5c..a7a40af 100644 --- a/include/classes/BigPipe/Item.php +++ b/include/classes/BigPipe/Item.php @@ -11,7 +11,7 @@ namespace BigPipe; abstract class Item { - protected $ID = ''; + protected $id = ''; protected $phaseDoneJS = []; #=============================================================================== @@ -23,7 +23,7 @@ abstract class Item { # Return the unique ID #=============================================================================== public function getID(): string { - return $this->ID; + return $this->id; } #=============================================================================== |