1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-14 19:02:41 +01:00
phorge-phorge/src/applications/legalpad/storage/LegalpadDocumentSignature.php

24 lines
423 B
PHP
Raw Normal View History

<?php
/**
* @group legalpad
*/
final class LegalpadDocumentSignature extends LegalpadDAO {
protected $documentPHID;
protected $documentVersion;
protected $signerPHID;
protected $signatureData = array();
public function getConfiguration() {
return array(
self::CONFIG_SERIALIZATION => array(
'signatureData' => self::SERIALIZATION_JSON,
),
) + parent::getConfiguration();
}
}