| Current Path : /var/www/clients/client3/web2/web/vendor/magento/framework/Message/Test/Unit/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/framework/Message/Test/Unit/TestingMessage.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\Message\Test\Unit;
use Magento\Framework\Message\AbstractMessage;
class TestingMessage extends AbstractMessage
{
const TYPE_TESTING = 'testing';
/**
* Getter message type
*
* @return string
*/
public function getType()
{
return static::TYPE_TESTING;
}
}