ruạṛ
<?php namespace Inpsyde\BackWPup\Notice; use Inpsyde\EnvironmentChecker\Constraints\WordPressConstraint; class WordPressNotice extends EnvironmentNotice { /** * @var string */ public const OPTION_NAME = 'backwpup_notice_wordpress_version'; /** * @var string */ public const ID = self::OPTION_NAME; /** * {@inheritdoc} */ protected function getConstraints(): array { return [ new WordPressConstraint('5.0'), ]; } /** * {@inheritdoc} */ protected function message(): NoticeMessage { return new NoticeMessage('wordpress'); } }
cải xoăn