Changeset 2711278
- Timestamp:
- 04/18/2022 10:52:42 PM (4 years ago)
- Location:
- torque
- Files:
-
- 2 edited
-
tags/0.6.1/packages/htmldoc/htmldoc.php (modified) (1 diff)
-
trunk/packages/htmldoc/htmldoc.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
torque/tags/0.6.1/packages/htmldoc/htmldoc.php
r2711273 r2711278 121 121 * @return htmldoc|null The child node at the requested position or null if there is no child at the requested position 122 122 */ 123 public function offsetGet( mixed$i) : ?htmldoc { // return reference so you can set it like an array123 public function offsetGet($i) : ?htmldoc { // return reference so you can set it like an array 124 124 if (isset($this->children[$i])) { 125 125 $obj = new htmldoc($this->config); -
torque/trunk/packages/htmldoc/htmldoc.php
r2711273 r2711278 121 121 * @return htmldoc|null The child node at the requested position or null if there is no child at the requested position 122 122 */ 123 public function offsetGet( mixed$i) : ?htmldoc { // return reference so you can set it like an array123 public function offsetGet($i) : ?htmldoc { // return reference so you can set it like an array 124 124 if (isset($this->children[$i])) { 125 125 $obj = new htmldoc($this->config);
Note: See TracChangeset
for help on using the changeset viewer.