mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-11 08:06:13 +01:00
19 lines
368 B
PHP
19 lines
368 B
PHP
|
<?php
|
||
|
|
||
|
final class DivinerLiveAtom extends DivinerDAO {
|
||
|
|
||
|
protected $symbolPHID;
|
||
|
protected $content;
|
||
|
protected $atomData;
|
||
|
|
||
|
public function getConfiguration() {
|
||
|
return array(
|
||
|
self::CONFIG_TIMESTAMPS => false,
|
||
|
self::CONFIG_SERIALIZATION => array(
|
||
|
'atomData' => self::SERIALIZATION_JSON,
|
||
|
),
|
||
|
) + parent::getConfiguration();
|
||
|
}
|
||
|
|
||
|
}
|