Spaces:
No application file
No application file
| namespace Mautic\CoreBundle\Event; | |
| use Symfony\Contracts\EventDispatcher\Event; | |
| class UpgradeEvent extends Event | |
| { | |
| public function __construct( | |
| protected array $status | |
| ) { | |
| } | |
| /** | |
| * @return array | |
| */ | |
| public function getStatus() | |
| { | |
| return $this->status; | |
| } | |
| public function isSuccessful(): bool | |
| { | |
| if (array_key_exists('success', $this->status)) { | |
| return (bool) $this->status['success']; | |
| } | |
| return false; | |
| } | |
| } | |