Skip to content
Snippets Groups Projects

Issue #3357721: XdebugValidator's wording is needlessly verbose

2 files
+ 3
3
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -27,7 +27,7 @@ final class PhpExtensionsValidator extends PackageManagerPhpExtensionsValidator
@@ -27,7 +27,7 @@ final class PhpExtensionsValidator extends PackageManagerPhpExtensionsValidator
*/
*/
public function validateXdebug(PreOperationStageEvent $event): void {
public function validateXdebug(PreOperationStageEvent $event): void {
if ($this->isExtensionLoaded('xdebug') && $event->stage instanceof CronUpdateStage) {
if ($this->isExtensionLoaded('xdebug') && $event->stage instanceof CronUpdateStage) {
$event->addError([$this->t("Xdebug is enabled, currently Cron Updates are not allowed while it is enabled. If Xdebug is not disabled you will not receive security and other updates during cron.")]);
$event->addError([$this->t("Unattended updates are not allowed while Xdebug is enabled. You cannot receive updates, including security updates, until it is disabled.")]);
}
}
elseif ($event instanceof StatusCheckEvent) {
elseif ($event instanceof StatusCheckEvent) {
parent::validateXdebug($event);
parent::validateXdebug($event);
Loading