1<?php
2/**
3 * Copyright 2014-2017 Horde LLC (http://www.horde.org/)
4 *
5 * See the enclosed file COPYING for license information (LGPL). If you
6 * did not receive this file, see http://www.horde.org/licenses/lgpl21.
7 *
8 * @category  Horde
9 * @copyright 2014-2017 Horde LLC
10 * @license   http://www.horde.org/licenses/lgpl21 LGPL 2.1
11 * @package   Mime
12 */
13
14/**
15 * This class represents the Received header value.
16 *
17 * @author    Michael Slusarz <slusarz@horde.org>
18 * @category  Horde
19 * @copyright 2014-2017 Horde LLC
20 * @license   http://www.horde.org/licenses/lgpl21 LGPL 2.1
21 * @package   Mime
22 * @since     2.5.0
23 */
24class Horde_Mime_Headers_Received
25extends Horde_Mime_Headers_Element_Multiple
26{
27    /**
28     */
29    public function __construct($name, $value)
30    {
31        parent::__construct('Received', $value);
32    }
33
34    /**
35     */
36    public static function getHandles()
37    {
38        return array(
39            // Mail: RFC 5322
40            'received'
41        );
42    }
43
44}
45