magento2-docker/dev/tests/integration/_files/Magento/TestModuleMessageQueueConfi.../HandlerTwo.php

43 lines
636 B
PHP
Executable File

<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\TestModuleMessageQueueConfiguration;
/**
* Class for testing queue handlers.
*/
class HandlerTwo
{
/**
* Return true.
*
* @return bool
*/
public function handlerMethodOne()
{
return true;
}
/**
* Return true.
*
* @return bool
*/
public function handlerMethodTwo()
{
return true;
}
/**
* Return true.
*
* @return bool
*/
public function handlerMethodThree()
{
return true;
}
}