deblan.tv/vendor/trinity/src/Trinity/Bundle/SearchBundle/TrinitySearchEvents.php
2015-03-02 21:57:49 +01:00

21 lines
558 B
PHP

<?php
namespace Trinity\Bundle\SearchBundle;
final class TrinitySearchEvents
{
/**
* The ADD_INDEX event occurs when the object creation process succeeded.
*/
const LUCENE_ADD_INDEX = "trinity_search.lucene.add_index";
/**
* The UPDATE_INDEX event occurs when the object is updated.
*/
const LUCENE_UPDATE_INDEX = "trinity_search.lucene.update_index";
/**
* The REMOVE_INDEX event occurs when the object delete process succeeded.
*/
const LUCENE_REMOVE_INDEX = "trinity_search.lucene.remove_index";
}