mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
12 lines
225 B
PHP
12 lines
225 B
PHP
<?php
|
|
/*
|
|
* SPDX-FileCopyrightText: None
|
|
* SPDX-License-Identifier: CC0-1.0
|
|
*/
|
|
|
|
// PHP 8.4
|
|
function array_find(array $array, callable $callback) {}
|
|
|
|
// PHP 8.5
|
|
function array_any(array $array, callable $callback): bool {}
|
|
|