aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/vobject/lib/Splitter/VCard.php
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2019-05-02 11:33:07 +0200
committerMax Kostikov <max@kostikov.co>2019-05-02 11:33:07 +0200
commit47fba5827bd106f53625b543f30643ca5ba1c16e (patch)
treebef05781eacc6dbc67d03899e0dde0257ce58096 /vendor/sabre/vobject/lib/Splitter/VCard.php
parent47f75ad8bfbe8325a76ae6fe466aa8080fc87045 (diff)
parent516167c0f8579c8a068b6e52557e7e1109f897ae (diff)
downloadvolse-hubzilla-47fba5827bd106f53625b543f30643ca5ba1c16e.tar.gz
volse-hubzilla-47fba5827bd106f53625b543f30643ca5ba1c16e.tar.bz2
volse-hubzilla-47fba5827bd106f53625b543f30643ca5ba1c16e.zip
Merge branch 'dev' into 'dev'
# Conflicts: # Zotlabs/Lib/ThreadItem.php
Diffstat (limited to 'vendor/sabre/vobject/lib/Splitter/VCard.php')
-rw-r--r--vendor/sabre/vobject/lib/Splitter/VCard.php22
1 files changed, 9 insertions, 13 deletions
diff --git a/vendor/sabre/vobject/lib/Splitter/VCard.php b/vendor/sabre/vobject/lib/Splitter/VCard.php
index 0bb82abe9..a20f5c2c1 100644
--- a/vendor/sabre/vobject/lib/Splitter/VCard.php
+++ b/vendor/sabre/vobject/lib/Splitter/VCard.php
@@ -19,8 +19,8 @@ use Sabre\VObject\Parser\MimeDir;
* @author Armin Hackmann
* @license http://sabre.io/license/ Modified BSD License
*/
-class VCard implements SplitterInterface {
-
+class VCard implements SplitterInterface
+{
/**
* File handle.
*
@@ -38,16 +38,15 @@ class VCard implements SplitterInterface {
/**
* Constructor.
*
- * The splitter should receive an readable file stream as it's input.
+ * The splitter should receive an readable file stream as its input.
*
* @param resource $input
- * @param int $options Parser options, see the OPTIONS constants.
+ * @param int $options parser options, see the OPTIONS constants
*/
- function __construct($input, $options = 0) {
-
+ public function __construct($input, $options = 0)
+ {
$this->input = $input;
$this->parser = new MimeDir($input, $options);
-
}
/**
@@ -56,23 +55,20 @@ class VCard implements SplitterInterface {
*
* When the end is reached, null will be returned.
*
- * @return Sabre\VObject\Component|null
+ * @return \Sabre\VObject\Component|null
*/
- function getNext() {
-
+ public function getNext()
+ {
try {
$object = $this->parser->parse();
if (!$object instanceof VObject\Component\VCard) {
throw new VObject\ParseException('The supplied input contained non-VCARD data.');
}
-
} catch (VObject\EofException $e) {
return;
}
return $object;
-
}
-
}