<?php
							 | 
						|
								
							 | 
						|
								namespace App\Handlers\Actions;
							 | 
						|
								
							 | 
						|
								/**
							 | 
						|
								 *
							 | 
						|
								 *
							 | 
						|
								 *
							 | 
						|
								 */
							 | 
						|
								
							 | 
						|
								class ActionHandler implements ActionHandlerInterface
							 | 
						|
								{
							 | 
						|
								    // data to process in a action
							 | 
						|
								    protected $data;
							 | 
						|
								
							 | 
						|
								    /**
							 | 
						|
								     *
							 | 
						|
								     *  @param mixed $data
							 | 
						|
								     *
							 | 
						|
								     */
							 | 
						|
								    public function __construct($data)
							 | 
						|
								    {
							 | 
						|
								        $this->data = $data;
							 | 
						|
								    }
							 | 
						|
								}
							 |