@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Bump required PHP version to 7.2.25 also in .arclint

Summary:
Phorge requires PHP 7.2.25 since rP7d8c84a7. We already did the same bump in Arcanist in rARC92091b31.

This makes the entire XHPast linting for PHP version functionality de-facto useless as version information has not been updated for PHP 7, so anything will pass - see T16274.

Closes T16268

Refs T15047

Test Plan:
Introduce an `array_column()` call (introduced in PHP 5.5.0) anywhere in the codebase, then run `arc lint`.
Do not get `This codebase targets PHP 5.5, but array_column() was not introduced until PHP 5.5.0.` anymore.

Reviewers: O1 Blessed Committers, avivey

Reviewed By: O1 Blessed Committers, avivey

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T16268, T15047

Differential Revision: https://we.phorge.it/D26365

+1 -1
+1 -1
.arclint
··· 82 82 "type": "xhpast", 83 83 "include": "(\\.php$)", 84 84 "standard": "phutil.xhpast", 85 - "xhpast.php-version": "5.5" 85 + "xhpast.php-version": "7.2.25" 86 86 } 87 87 } 88 88 }