mirror of
https://github.com/nextcloud/server.git
synced 2026-06-29 12:24:50 +02:00
d14a032220
Signed-off-by: Salvatore Martire <4652631+salmart-dev@users.noreply.github.com>
13 lines
225 B
PHP
13 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 {}
|
|
|