Fix Static
This commit is contained in:
parent
51016ad6c0
commit
8c431e293d
@ -21,7 +21,7 @@ class Base
|
|||||||
protected $require = false;
|
protected $require = false;
|
||||||
|
|
||||||
/** @var string $type */
|
/** @var string $type */
|
||||||
static public $type = 'base';
|
public $type = 'base';
|
||||||
|
|
||||||
/** @var string $rawValue */
|
/** @var string $rawValue */
|
||||||
protected $rawValue = '';
|
protected $rawValue = '';
|
||||||
|
|||||||
@ -6,7 +6,7 @@ use PSC\Library\Calc\Option\Type\Select\Opt;
|
|||||||
class Checkbox extends Base
|
class Checkbox extends Base
|
||||||
{
|
{
|
||||||
|
|
||||||
static public $type = 'checkbox';
|
public $type = 'checkbox';
|
||||||
|
|
||||||
/** @var \ArrayIterator $options */
|
/** @var \ArrayIterator $options */
|
||||||
protected $options;
|
protected $options;
|
||||||
|
|||||||
@ -4,6 +4,6 @@ namespace PSC\Library\Calc\Option\Type;
|
|||||||
class Hidden extends Base
|
class Hidden extends Base
|
||||||
{
|
{
|
||||||
|
|
||||||
static public $type = 'hidden';
|
public $type = 'hidden';
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -4,6 +4,6 @@ namespace PSC\Library\Calc\Option\Type;
|
|||||||
class Input extends Base
|
class Input extends Base
|
||||||
{
|
{
|
||||||
|
|
||||||
static public $type = 'input';
|
public $type = 'input';
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -6,7 +6,7 @@ use PSC\Library\Calc\Option\Type\Select\Opt;
|
|||||||
class Radio extends Base
|
class Radio extends Base
|
||||||
{
|
{
|
||||||
|
|
||||||
static public $type = 'radio';
|
public $type = 'radio';
|
||||||
|
|
||||||
/** @var \ArrayIterator $options */
|
/** @var \ArrayIterator $options */
|
||||||
protected $options;
|
protected $options;
|
||||||
|
|||||||
@ -10,7 +10,7 @@ class Select extends Base
|
|||||||
|
|
||||||
static public $modeNone = '';
|
static public $modeNone = '';
|
||||||
|
|
||||||
static public $type = 'select';
|
public $type = 'select';
|
||||||
|
|
||||||
/** @var \ArrayIterator $options */
|
/** @var \ArrayIterator $options */
|
||||||
protected $options;
|
protected $options;
|
||||||
|
|||||||
@ -4,7 +4,7 @@ namespace PSC\Library\Calc\Option\Type;
|
|||||||
class Template extends Base
|
class Template extends Base
|
||||||
{
|
{
|
||||||
|
|
||||||
static public $type = 'template';
|
public $type = 'template';
|
||||||
|
|
||||||
/** @var String $select */
|
/** @var String $select */
|
||||||
protected $select = '';
|
protected $select = '';
|
||||||
|
|||||||
@ -4,6 +4,6 @@ namespace PSC\Library\Calc\Option\Type;
|
|||||||
class Text extends Base
|
class Text extends Base
|
||||||
{
|
{
|
||||||
|
|
||||||
static public $type = 'text';
|
public $type = 'text';
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -4,6 +4,6 @@ namespace PSC\Library\Calc\Option\Type;
|
|||||||
class Textarea extends Base
|
class Textarea extends Base
|
||||||
{
|
{
|
||||||
|
|
||||||
static public $type = 'textarea';
|
public $type = 'textarea';
|
||||||
|
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user