Final Class Yiisoft\Db\Pgsql\Column\StructuredLazyColumn
| Inheritance | Yiisoft\Db\Pgsql\Column\StructuredLazyColumn » Yiisoft\Db\Schema\Column\AbstractStructuredColumn |
|---|
Public Methods
| Method | Description | Defined By |
|---|---|---|
| phpTypecast() | Yiisoft\Db\Pgsql\Column\StructuredLazyColumn |
Method Details
| public Yiisoft\Db\Pgsql\Data\StructuredLazyArray|null phpTypecast ( string|null $value ) | ||
| $value | string|null | |
public function phpTypecast(mixed $value): ?StructuredLazyArray
{
if (is_string($value)) {
return new StructuredLazyArray($value, $this->columns);
}
return $value;
}
Signup or Login in order to comment.