1: <?php
2: /**
3: * Object containg POP3 fetch data.
4: *
5: * Copyright 2011-2012 Horde LLC (http://www.horde.org/)
6: *
7: * See the enclosed file COPYING for license information (LGPL). If you
8: * did not receive this file, see http://www.horde.org/licenses/lgpl21.
9: *
10: * @author Michael Slusarz <slusarz@horde.org>
11: * @category Horde
12: * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
13: * @package Imap_Client
14: */
15: class Horde_Imap_Client_Data_Fetch_Pop3 extends Horde_Imap_Client_Data_Fetch
16: {
17: /**
18: * Set UID.
19: *
20: * @param string $uid The message UID. Unlike IMAP, this UID does not
21: * have to be an integer.
22: */
23: public function setUid($uid)
24: {
25: $this->_data[Horde_Imap_Client::FETCH_UID] = strval($uid);
26: }
27:
28: }
29: