Changeset 3351731
- Timestamp:
- 08/28/2025 05:52:25 AM (6 months ago)
- File:
-
- 1 edited
-
bitfire/trunk/src/util.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bitfire/trunk/src/util.php
r3351726 r3351731 725 725 * only used in api.php 726 726 */ 727 function file_index(string $dirname, string $include_regex_filter = NULL, callable $write_fn, bool $root = true) {727 function file_index(string $dirname, ?string $include_regex_filter = NULL, callable $write_fn, bool $root = true) { 728 728 if (!is_dir($dirname)) { return; } 729 729 static $examined = []; … … 1977 1977 * PURE: IDEMPOTENT, REFERENTIAL INTEGRITY 1978 1978 */ 1979 function cache_prevent( Effect $effect = null) : Effect {1979 function cache_prevent(?Effect $effect = null) : Effect { 1980 1980 if ($effect == null) { 1981 1981 $effect = new Effect();
Note: See TracChangeset
for help on using the changeset viewer.