mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-11 16:16:14 +01:00
12 lines
248 B
PHP
12 lines
248 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorPDFInfoObject
|
||
|
extends PhabricatorPDFObject {
|
||
|
|
||
|
final protected function writeObject() {
|
||
|
$this->writeLine('/Producer (Phabricator 20190801)');
|
||
|
$this->writeLine('/CreationDate (D:%s)', date('YmdHis'));
|
||
|
}
|
||
|
|
||
|
}
|