<?php
declare(strict_types=1);
/*
*
* This file is part of the PEC Platform SearchBundle.
*
* (c) PEC project engineers & consultants
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Pec\Bundle\SearchBundle\Entity;
use Pec\Bundle\PlatformBundle\Entity\IUploadable;
@trigger_error('Please use \StingerSoft\EntitySearchBundle\Model\Document::setFile', E_USER_DEPRECATED);
/**
* Allows the indexing of files specified by the IUploadable::getAbsolutePath() method
*
* @see IUploadable::getAbsolutePath()
* @deprecated
*/
interface SearchableUploadable extends IUploadable, SearchableEntity {
}