mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-13 13:03:20 +00:00
15 lines
277 B
PHP
15 lines
277 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\Media\Subdef\Specification;
|
|
|
|
use MediaAlchemyst\Specification\AbstractSpecification;
|
|
|
|
class PdfSpecification extends AbstractSpecification
|
|
{
|
|
const TYPE_PDF = 'pdf';
|
|
|
|
public function getType()
|
|
{
|
|
return self::TYPE_PDF;
|
|
}
|
|
} |