Fix Static

This commit is contained in:
Thomas Peterson 2022-03-06 19:44:45 +01:00
parent 51016ad6c0
commit 8c431e293d
9 changed files with 9 additions and 9 deletions

View File

@ -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 = '';

View File

@ -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;

View File

@ -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';
} }

View File

@ -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';
} }

View File

@ -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;

View File

@ -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;

View File

@ -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 = '';

View File

@ -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';
} }

View File

@ -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';
} }