for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Everlution\AjaxcomBundle\Mutation;
/**
* Trait RenderableTrait.
*
* @author Ivan Barlog <[email protected]>
*/
trait RenderableTrait
{
/** @var string */
private $view;
/** @var array */
private $parameters;
public function setView(string $view): void
$this->view = $view;
}
public function setParameters(array $parameters): void
$this->parameters = $parameters;