<?php
|
|
|
|
namespace App\ResponseHandler;
|
|
|
|
use App\Handlers\Handler;
|
|
|
|
/**
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
class ActionHandler extends Handler implements ActionHandlerInterface
|
|
{
|
|
protected $data;
|
|
|
|
/**
|
|
*
|
|
* @param mixed $data
|
|
*
|
|
*/
|
|
public function __construct($data)
|
|
{
|
|
$this->data = $data;
|
|
}
|
|
}
|