diff options
author | Mario <mario@mariovavti.com> | 2020-05-07 15:23:30 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-05-07 15:23:30 +0000 |
commit | c76ff4249ec0f88832a9ce6c966a2fd326482197 (patch) | |
tree | 6a7cf372eafb957002fa2c0a969a61dd5a084bf2 /vendor/sabre/vobject/lib/Property | |
parent | dbfe748d274f6843fc91a3071df7be45c4ab5b00 (diff) | |
download | volse-hubzilla-c76ff4249ec0f88832a9ce6c966a2fd326482197.tar.gz volse-hubzilla-c76ff4249ec0f88832a9ce6c966a2fd326482197.tar.bz2 volse-hubzilla-c76ff4249ec0f88832a9ce6c966a2fd326482197.zip |
add new files
Diffstat (limited to 'vendor/sabre/vobject/lib/Property')
-rw-r--r-- | vendor/sabre/vobject/lib/Property/VCard/PhoneNumber.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/vendor/sabre/vobject/lib/Property/VCard/PhoneNumber.php b/vendor/sabre/vobject/lib/Property/VCard/PhoneNumber.php new file mode 100644 index 000000000..b714ffd03 --- /dev/null +++ b/vendor/sabre/vobject/lib/Property/VCard/PhoneNumber.php @@ -0,0 +1,30 @@ +<?php + +namespace Sabre\VObject\Property\VCard; + +use Sabre\VObject\Property; + +/** + * PhoneNumber property. + * + * This object encodes PHONE-NUMBER values. + * + * @author Christian Kraus <christian@kraus.work> + */ +class PhoneNumber extends Property\Text +{ + protected $structuredValues = []; + + /** + * Returns the type of value. + * + * This corresponds to the VALUE= parameter. Every property also has a + * 'default' valueType. + * + * @return string + */ + public function getValueType() + { + return 'PHONE-NUMBER'; + } +} |