BooleanRowField
in package
implements
RowField
Class representing a boolean table row field.
Interfaces, Classes and Traits
- RowField
- Interface representing a table row field.
Table of Contents
- $name : string
- Name.
- $value : bool
- Value.
- create() : BooleanRowField
- Create instance.
- name() : string
- Return name.
- value() : bool
- Return value.
- __construct() : mixed
- Constructor.
Properties
$name
Name.
private
string
$name
$value
Value.
private
bool
$value
Methods
create()
Create instance.
public
static create(string $name, bool $value) : BooleanRowField
Parameters
- $name : string
-
Name.
- $value : bool
-
Value.
Return values
BooleanRowField —Instance.
name()
Return name.
public
name() : string
Tags
Return values
string —Name.
value()
Return value.
public
value() : bool
Tags
Return values
bool —__construct()
Constructor.
private
__construct(string $name, bool $value) : mixed
Parameters
- $name : string
-
Name.
- $value : bool
-
Value.