mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-12 13:48:40 +00:00
16 lines
148 B
PHP
16 lines
148 B
PHP
<?php
|
|
|
|
namespace Mpdf\Output;
|
|
|
|
class Destination
|
|
{
|
|
|
|
const FILE = 'F';
|
|
|
|
const DOWNLOAD = 'D';
|
|
|
|
const STRING_RETURN = 'S';
|
|
|
|
const INLINE = 'I';
|
|
}
|