moddbregistertopic.class.php 786 B

12345678910111213141516171819202122232425
  1. <?php
  2. /*
  3. * This file is part of MODX Revolution.
  4. *
  5. * Copyright (c) MODX, LLC. All Rights Reserved.
  6. *
  7. * For complete copyright and license information, see the COPYRIGHT and LICENSE
  8. * files found in the top-level directory of this distribution.
  9. */
  10. /**
  11. * A database representation of a registry topic
  12. *
  13. * @property string $queue The queue this topic belongs to
  14. * @property string $name The name of the topic
  15. * @property datetime $created The time this topic was created
  16. * @property timestamp $updated The last time this topic was updated
  17. * @property array $options An array of configuration options for the topic
  18. *
  19. * @see modDbRegisterQueue
  20. * @see modDbRegisterMessage
  21. * @package modx
  22. * @subpackage registry.db
  23. */
  24. class modDbRegisterTopic extends xPDOSimpleObject {}