mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
17 lines
282 B
PHP
17 lines
282 B
PHP
|
<?php
|
||
|
|
||
|
final class DrydockLog extends DrydockDAO {
|
||
|
|
||
|
protected $resourceID;
|
||
|
protected $leaseID;
|
||
|
protected $epoch;
|
||
|
protected $message;
|
||
|
|
||
|
public function getConfiguration() {
|
||
|
return array(
|
||
|
self::CONFIG_TIMESTAMPS => false,
|
||
|
) + parent::getConfiguration();
|
||
|
}
|
||
|
|
||
|
}
|