diff options
Diffstat (limited to 'vendor/sabre/vobject/lib/Property')
-rw-r--r-- | vendor/sabre/vobject/lib/Property/VCard/PhoneNumber.php | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/vendor/sabre/vobject/lib/Property/VCard/PhoneNumber.php b/vendor/sabre/vobject/lib/Property/VCard/PhoneNumber.php deleted file mode 100644 index b714ffd03..000000000 --- a/vendor/sabre/vobject/lib/Property/VCard/PhoneNumber.php +++ /dev/null @@ -1,30 +0,0 @@ -<?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'; - } -} |