Implemented view parameter

This commit is contained in:
Kevin Frantz
2019-03-29 00:29:03 +01:00
parent 4114586b26
commit fe84aaf92c
4 changed files with 87 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace Infinito\Domain\ParameterManagement\Parameter;
use Symfony\Component\Validator\Constraints as Assert;
/**
* @author kevinfrantz
*/
final class ViewParameter extends AbstractParameter
{
/**
* @var bool
* @Assert\Choice(callback={"Infinito\DBAL\Types\ActionType","getValues"})
*/
protected $value = null;
}