for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Recca0120\Repository;
class Action
{
/**
* $type.
*
* @var string
*/
public $type;
* $method.
public $method;
* $parameters.
* @var mixed
public $parameters;
* __construct.
* @param string $type
* @param string $method
* @param array $parameters
public function __construct($type, $method, $parameters = [])
$this->type = $type;
$this->method = $method;
$this->parameters = $parameters;
}