| @@ 38-41 (lines=4) @@ | ||
| 35 | ||
| 36 | if ($this->loaded) return ($this->items[key($this->items)] ?? null); |
|
| 37 | ||
| 38 | foreach (Explorer::iterateDirs($this->dir_name) as $name) { |
|
| 39 | ||
| 40 | if (null !== ($data = $this->getItem($name))) return $data; |
|
| 41 | } |
|
| 42 | ||
| 43 | # ------------------------ |
|
| 44 | ||
| @@ 54-57 (lines=4) @@ | ||
| 51 | ||
| 52 | $items = []; |
|
| 53 | ||
| 54 | foreach (Explorer::iterateDirs($this->dir_name) as $name) { |
|
| 55 | ||
| 56 | if (null !== ($data = $this->getItem($name))) $items[$name] = $data; |
|
| 57 | } |
|
| 58 | ||
| 59 | # ------------------------ |
|
| 60 | ||