mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-11 08:06:13 +01:00
60d1762a85
Summary: Ref T11132, significantly cleans up the Config app, new layout, icons, spacing, etc. Some minor todos around re-designing "issues", mobile support, and maybe another pass at actual Group pages. Test Plan: Visit and test every page in the config app, set new items, resolve setup issues, etc. Reviewers: epriestley Reviewed By: epriestley Subscribers: PHID-OPKG-gm6ozazyms6q6i22gyam, Korvin Maniphest Tasks: T11132 Differential Revision: https://secure.phabricator.com/D16468
20 lines
470 B
PHP
20 lines
470 B
PHP
<?php
|
|
|
|
final class PhabricatorCacheSetupCheck extends PhabricatorSetupCheck {
|
|
|
|
public function getDefaultGroup() {
|
|
return self::GROUP_PHP;
|
|
}
|
|
|
|
protected function executeChecks() {
|
|
$code_cache = PhabricatorOpcodeCacheSpec::getActiveCacheSpec();
|
|
$data_cache = PhabricatorDataCacheSpec::getActiveCacheSpec();
|
|
|
|
$issues = $code_cache->getIssues() + $data_cache->getIssues();
|
|
|
|
foreach ($issues as $issue) {
|
|
$this->addIssue($issue);
|
|
}
|
|
}
|
|
|
|
}
|