1<?php
2
3namespace Sabre\VObject\Property;
4
5/**
6 * UtcOffset property
7 *
8 * This object encodes UTC-OFFSET values.
9 *
10 * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
11 * @author Evert Pot (http://evertpot.com/)
12 * @license http://sabre.io/license/ Modified BSD License
13 */
14class UtcOffset extends Text {
15
16    /**
17     * In case this is a multi-value property. This string will be used as a
18     * delimiter.
19     *
20     * @var string|null
21     */
22    public $delimiter = null;
23
24    /**
25     * Returns the type of value.
26     *
27     * This corresponds to the VALUE= parameter. Every property also has a
28     * 'default' valueType.
29     *
30     * @return string
31     */
32    public function getValueType() {
33
34        return "UTC-OFFSET";
35
36    }
37}
38