1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22:
<?php
namespace qdb;
/**
* A traversable collection of {@link QdbTag}.
*
* A `QdbTagCollection` is returned by {@link \QdbEntry::getTags()}.
*
* @example
* <code>
* $bobsTags = $cluster->blob('Bob the blob')->getTags();
* foreach ($bobsTags as $tag) {
* echo('Bob has the tag ' . $tag->alias());
* }
* </code>
*
* @see QdbEntry::getTags()
*/
class QdbTagCollection implements Iterator
{
}
?>