Final Class Yiisoft\Db\Pgsql\Column\BooleanColumn
| Inheritance | Yiisoft\ |
|---|
Public Methods
| Method | Description | Defined By |
|---|---|---|
| phpTypecast() | Yiisoft\ |
Method Details
| public ?bool phpTypecast ( mixed $value ) | ||
| $value | mixed | |
public function phpTypecast(mixed $value): ?bool
{
if ($value === null) {
return null;
}
return $value && $value !== 'f';
}
User Contributed Notes
Leave a comment
Join the conversation to share a note.