vendor/pec-platform/search-bundle/Entity/SearchableUploadable.php line 18

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4.  *
  5.  * This file is part of the PEC Platform SearchBundle.
  6.  *
  7.  * (c) PEC project engineers & consultants
  8.  *
  9.  * For the full copyright and license information, please view the LICENSE
  10.  * file that was distributed with this source code.
  11.  */
  12. namespace Pec\Bundle\SearchBundle\Entity;
  13. use Pec\Bundle\PlatformBundle\Entity\IUploadable;
  14. @trigger_error('Please use \StingerSoft\EntitySearchBundle\Model\Document::setFile'E_USER_DEPRECATED);
  15. /**
  16.  * Allows the indexing of files specified by the IUploadable::getAbsolutePath() method
  17.  *
  18.  * @see IUploadable::getAbsolutePath()
  19.  * @deprecated
  20.  */
  21. interface SearchableUploadable extends IUploadableSearchableEntity {
  22. }