1<?php
2
3namespace Sabre\VObject\Property\VCard;
4
5use Sabre\VObject\Property;
6
7/**
8 * PhoneNumber property.
9 *
10 * This object encodes PHONE-NUMBER values.
11 *
12 * @author Christian Kraus <christian@kraus.work>
13 */
14class PhoneNumber extends Property\Text
15{
16    protected $structuredValues = [];
17
18    /**
19     * Returns the type of value.
20     *
21     * This corresponds to the VALUE= parameter. Every property also has a
22     * 'default' valueType.
23     *
24     * @return string
25     */
26    public function getValueType()
27    {
28        return 'PHONE-NUMBER';
29    }
30}
31