Changeset View
Changeset View
Standalone View
Standalone View
src/parser/xhpast/bin/PhutilXHPASTBinary.php
| <?php | <?php | ||||
| final class PhutilXHPASTBinary extends Phobject { | final class PhutilXHPASTBinary extends Phobject { | ||||
| /** | /** | ||||
| * The expected XHPAST version. | * The expected XHPAST version. | ||||
| * | * | ||||
| * This is the version that would be obtained with an up-to-date XHPAST | * This is the version that would be obtained with an up-to-date XHPAST | ||||
| * build. The //actual// XHPAST build version may vary. | * build. The //actual// XHPAST build version may vary. | ||||
| */ | */ | ||||
| const EXPECTED_VERSION = '5.6.1'; | const EXPECTED_VERSION = '5.7.0'; | ||||
| /** | /** | ||||
| * The XHPAST build version. | * The XHPAST build version. | ||||
| * | * | ||||
| * Cache the result from @{method:getVersion} to prevent excessive calls to | * Cache the result from @{method:getVersion} to prevent excessive calls to | ||||
| * @{function:execx}. | * @{function:execx}. | ||||
| */ | */ | ||||
| private static $version; | private static $version; | ||||
| ▲ Show 20 Lines • Show All 115 Lines • Show Last 20 Lines | |||||