mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-19 03:01:11 +01:00
11 lines
168 B
PHP
11 lines
168 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorPDFHeadFragment
|
||
|
extends PhabricatorPDFFragment {
|
||
|
|
||
|
protected function writeFragment() {
|
||
|
$this->writeLine('%s', '%PDF-1.3');
|
||
|
}
|
||
|
|
||
|
}
|