bug fix comparing enum
This commit is contained in:
parent
51de2d6f64
commit
a6096337b5
1 changed files with 2 additions and 2 deletions
|
@ -89,10 +89,10 @@ trait TagTrait
|
||||||
$strings[] = sprintf('style="%s"', $this->styles());
|
$strings[] = sprintf('style="%s"', $this->styles());
|
||||||
}
|
}
|
||||||
foreach ($this->attributes() as $name => $value) {
|
foreach ($this->attributes() as $name => $value) {
|
||||||
if ($value == BooleanAttribute::false) {
|
if ($value === BooleanAttribute::false) {
|
||||||
// skip over false boolean attributes
|
// skip over false boolean attributes
|
||||||
continue;
|
continue;
|
||||||
}elseif ($value == BooleanAttribute::true) {
|
}elseif ($value === BooleanAttribute::true) {
|
||||||
// true boolean attributes render as null
|
// true boolean attributes render as null
|
||||||
$strings[] = $name;
|
$strings[] = $name;
|
||||||
}elseif (is_string($value) || is_numeric($value) || $value instanceof Stringable) {
|
}elseif (is_string($value) || is_numeric($value) || $value instanceof Stringable) {
|
||||||
|
|
Loading…
Reference in a new issue