SearchPropertySynonymsBehavior.class.inc 313 B

1234567891011121314
  1. <?php
  2. /**
  3. * @file
  4. * Integrates Entity properties with synonyms "search" behavior.
  5. */
  6. if (module_exists('synonyms_search')) {
  7. /**
  8. * Definition of SearchPropertySynonymsBehavior class.
  9. */
  10. class SearchPropertySynonymsBehavior extends PropertySynonymsBehavior implements SearchSynonymsBehavior {
  11. }
  12. }