bedita /
elastic-search
| 1 | <?php |
||
| 2 | declare(strict_types=1); |
||
| 3 | |||
| 4 | namespace BEdita\ElasticSearch\Model\Document; |
||
| 5 | |||
| 6 | /** |
||
| 7 | * Base searchable document representing a BEdita object. |
||
| 8 | * |
||
| 9 | * @property numeric-string $id Object ID. |
||
| 10 | * @property string $uname Object unique name. |
||
| 11 | * @property string $type Object type. |
||
| 12 | * @property 'on'|'draft'|'off' $status Object status. |
||
| 13 | * @property bool $deleted Object deletion status. |
||
| 14 | * @property \DateTimeInterface|null $publish_start Publication start. |
||
| 15 | * @property \DateTimeInterface|null $publish_end Publication end. |
||
| 16 | * @property string $title Object title. |
||
| 17 | * @property string $description Object description. |
||
| 18 | * @property string $body Object body. |
||
| 19 | */ |
||
|
0 ignored issues
–
show
Documentation
Bug
introduced
by
Loading history...
|
|||
| 20 | class ObjectSearch extends Search |
||
| 21 | { |
||
| 22 | } |
||
| 23 |