Page MenuHomePhabricator

D11514.id27728.diff
No OneTemporary

D11514.id27728.diff

diff --git a/src/__phutil_library_map__.php b/src/__phutil_library_map__.php
--- a/src/__phutil_library_map__.php
+++ b/src/__phutil_library_map__.php
@@ -2614,6 +2614,7 @@
'PhabricatorWorkingCopyDiscoveryTestCase' => 'applications/repository/engine/__tests__/PhabricatorWorkingCopyDiscoveryTestCase.php',
'PhabricatorWorkingCopyPullTestCase' => 'applications/repository/engine/__tests__/PhabricatorWorkingCopyPullTestCase.php',
'PhabricatorWorkingCopyTestCase' => 'applications/repository/engine/__tests__/PhabricatorWorkingCopyTestCase.php',
+ 'PhabricatorXHPASTSetupCheck' => 'applications/phpast/check/PhabricatorXHPASTSetupCheck.php',
'PhabricatorXHPASTViewController' => 'applications/phpast/controller/PhabricatorXHPASTViewController.php',
'PhabricatorXHPASTViewDAO' => 'applications/phpast/storage/PhabricatorXHPASTViewDAO.php',
'PhabricatorXHPASTViewFrameController' => 'applications/phpast/controller/PhabricatorXHPASTViewFrameController.php',
@@ -5906,6 +5907,7 @@
'PhabricatorWorkingCopyDiscoveryTestCase' => 'PhabricatorWorkingCopyTestCase',
'PhabricatorWorkingCopyPullTestCase' => 'PhabricatorWorkingCopyTestCase',
'PhabricatorWorkingCopyTestCase' => 'PhabricatorTestCase',
+ 'PhabricatorXHPASTSetupCheck' => 'PhabricatorSetupCheck',
'PhabricatorXHPASTViewController' => 'PhabricatorController',
'PhabricatorXHPASTViewDAO' => 'PhabricatorLiskDAO',
'PhabricatorXHPASTViewFrameController' => 'PhabricatorXHPASTViewController',
diff --git a/src/applications/phpast/check/PhabricatorXHPASTSetupCheck.php b/src/applications/phpast/check/PhabricatorXHPASTSetupCheck.php
new file mode 100644
--- /dev/null
+++ b/src/applications/phpast/check/PhabricatorXHPASTSetupCheck.php
@@ -0,0 +1,22 @@
+<?php
+
+final class PhabricatorXHPASTSetupCheck extends PhabricatorSetupCheck {
+
+ protected function executeChecks() {
+ if (!Filesystem::pathExists(xhpast_get_binary_path())) {
+ $this->newIssue('xhpast.binary')
+ ->setName(pht('Missing XHPAST Binary'))
+ ->setMessage(pht('The XHPAST binary does not exist.'))
+ ->addCommand(xhpast_get_build_instructions());
+ return;
+ }
+
+ if (!xhpast_is_available()) {
+ $this->newIssue('xhpast.version')
+ ->setName(pht('Out-of-Date XHPAST Binary'))
+ ->setMessage(pht('The XHPAST binary is not up-to-date.'))
+ ->addCommand(xhpast_get_build_instructions());
+ }
+ }
+
+}

File Metadata

Mime Type
text/plain
Expires
Tue, Mar 18, 11:39 PM (2 w, 3 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7710526
Default Alt Text
D11514.id27728.diff (2 KB)

Event Timeline