| 12345678910111213141516171819202122232425 |
- <?php
- /*
- * This file is part of MODX Revolution.
- *
- * Copyright (c) MODX, LLC. All Rights Reserved.
- *
- * For complete copyright and license information, see the COPYRIGHT and LICENSE
- * files found in the top-level directory of this distribution.
- */
- /**
- * A database representation of a registry topic
- *
- * @property string $queue The queue this topic belongs to
- * @property string $name The name of the topic
- * @property datetime $created The time this topic was created
- * @property timestamp $updated The last time this topic was updated
- * @property array $options An array of configuration options for the topic
- *
- * @see modDbRegisterQueue
- * @see modDbRegisterMessage
- * @package modx
- * @subpackage registry.db
- */
- class modDbRegisterTopic extends xPDOSimpleObject {}
|