Changeset 3444861
- Timestamp:
- 01/22/2026 01:16:17 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin-menu-editor/trunk/includes/ame-collections.php
r3434592 r3444861 169 169 } 170 170 171 public function rejectKeys(callable $callback): self { 172 $filtered = array_filter($this->array, function ($key) use ($callback) { 173 return !$callback($key); 174 }, ARRAY_FILTER_USE_KEY); 175 return new ArrayWrapper($filtered); 176 } 177 171 178 public function implode($separator): string { 172 179 return implode($separator, $this->array);
Note: See TracChangeset
for help on using the changeset viewer.