Skip to content

Commit 745d491

Browse files
committed
fix phpdoc order for consistency
1 parent 59cf585 commit 745d491

File tree

2 files changed

+116
-116
lines changed

2 files changed

+116
-116
lines changed

ext/standard/basic_functions.stub.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1732,14 +1732,14 @@ function array_pad(array $array, int $length, mixed $value): array {}
17321732

17331733
/**
17341734
* @return array<int|string, int|string>
1735-
* @refcount 1
17361735
* @compile-time-eval
1736+
* @refcount 1
17371737
*/
17381738
function array_flip(array $array): array {}
17391739

17401740
/**
1741-
* @refcount 1
17421741
* @compile-time-eval
1742+
* @refcount 1
17431743
*/
17441744
function array_change_key_case(array $array, int $case = CASE_LOWER): array {}
17451745

@@ -1797,15 +1797,15 @@ function array_intersect_uassoc(array $array, ...$rest): array {}
17971797
function array_uintersect_uassoc(array $array, ...$rest): array {}
17981798

17991799
/**
1800-
* @refcount 1
18011800
* @compile-time-eval
1801+
* @refcount 1
18021802
*/
18031803
function array_diff_key(array $array, array ...$arrays): array {}
18041804

18051805
/**
18061806
* @param array|callable $rest
1807-
* @refcount 1
18081807
* @compile-time-eval
1808+
* @refcount 1
18091809
*/
18101810
function array_diff_ukey(array $array, ...$rest): array {}
18111811

@@ -1821,8 +1821,8 @@ function array_diff(array $array, array ...$arrays): array {}
18211821
function array_udiff(array $array, ...$rest): array {}
18221822

18231823
/**
1824-
* @refcount 1
18251824
* @compile-time-eval
1825+
* @refcount 1
18261826
*/
18271827
function array_diff_assoc(array $array, array ...$arrays): array {}
18281828

@@ -1899,8 +1899,8 @@ function array_is_list(array $array): bool {}
18991899
/* base64.c */
19001900

19011901
/**
1902-
* @refcount 1
19031902
* @compile-time-eval
1903+
* @refcount 1
19041904
*/
19051905
function base64_encode(string $string): string {}
19061906

@@ -2347,8 +2347,8 @@ function wordwrap(string $string, int $width = 75, string $break = "\n", bool $c
23472347

23482348
/**
23492349
* @return array<int, string>
2350-
* @refcount 1
23512350
* @compile-time-eval
2351+
* @refcount 1
23522352
*/
23532353
function explode(string $separator, string $string, int $limit = PHP_INT_MAX): array {}
23542354

@@ -2361,8 +2361,8 @@ function implode(string|array $separator, ?array $array = null): string {}
23612361
function join(string|array $separator, ?array $array = null): string {}
23622362

23632363
/**
2364-
* @refcount 1
23652364
* @compile-time-eval
2365+
* @refcount 1
23662366
*/
23672367
function strtok(string $string, ?string $token = null): string|false {}
23682368

@@ -2412,8 +2412,8 @@ function strrpos(string $haystack, string $needle, int $offset = 0): int|false {
24122412
function strripos(string $haystack, string $needle, int $offset = 0): int|false {}
24132413

24142414
/**
2415-
* @refcount 1
24162415
* @compile-time-eval
2416+
* @refcount 1
24172417
*/
24182418
function strrchr(string $haystack, string $needle): string|false {}
24192419

@@ -2427,8 +2427,8 @@ function str_starts_with(string $haystack, string $needle): bool {}
24272427
function str_ends_with(string $haystack, string $needle): bool {}
24282428

24292429
/**
2430-
* @refcount 1
24312430
* @compile-time-eval
2431+
* @refcount 1
24322432
*/
24332433
function chunk_split(string $string, int $length = 76, string $separator = "\r\n"): string {}
24342434

0 commit comments

Comments
 (0)