Final Class Yiisoft\Db\Pgsql\Column\BooleanColumn
| Inheritance | Yiisoft\Db\Pgsql\Column\BooleanColumn » Yiisoft\Db\Schema\Column\BooleanColumn |
|---|
Public Methods
| Method | Description | Defined By |
|---|---|---|
| phpTypecast() | Yiisoft\Db\Pgsql\Column\BooleanColumn |
Method Details
| public boolean|null phpTypecast ( mixed $value ) | ||
| $value | mixed | |
public function phpTypecast(mixed $value): ?bool
{
if ($value === null) {
return null;
}
return $value && $value !== 'f';
}
Signup or Login in order to comment.