Revert "update composer libs"

This reverts commit e779335d06
This commit is contained in:
Mario
2019-04-25 11:24:09 +02:00
parent 701167bc12
commit f1c0797780
102 changed files with 3992 additions and 3132 deletions

View File

@@ -12,8 +12,8 @@ namespace Sabre\VObject;
* @author Evert Pot (http://evertpot.com/)
* @license http://sabre.io/license/ Modified BSD License
*/
class Reader
{
class Reader {
/**
* If this option is passed to the reader, it will be less strict about the
* validity of the lines.
@@ -35,18 +35,18 @@ class Reader
* You can either supply a string, or a readable stream for input.
*
* @param string|resource $data
* @param int $options
* @param string $charset
*
* @param int $options
* @param string $charset
* @return Document
*/
public static function read($data, $options = 0, $charset = 'UTF-8')
{
static function read($data, $options = 0, $charset = 'UTF-8') {
$parser = new Parser\MimeDir();
$parser->setCharset($charset);
$result = $parser->parse($data, $options);
return $result;
}
/**
@@ -55,21 +55,22 @@ class Reader
* The options argument is a bitfield. Pass any of the OPTIONS constant to
* alter the parsers' behaviour.
*
* You can either a string, a readable stream, or an array for its input.
* You can either a string, a readable stream, or an array for it's input.
* Specifying the array is useful if json_decode was already called on the
* input.
*
* @param string|resource|array $data
* @param int $options
* @param int $options
*
* @return Document
*/
public static function readJson($data, $options = 0)
{
static function readJson($data, $options = 0) {
$parser = new Parser\Json();
$result = $parser->parse($data, $options);
return $result;
}
/**
@@ -81,15 +82,17 @@ class Reader
* You can either supply a string, or a readable stream for input.
*
* @param string|resource $data
* @param int $options
* @param int $options
*
* @return Document
*/
public static function readXML($data, $options = 0)
{
static function readXML($data, $options = 0) {
$parser = new Parser\XML();
$result = $parser->parse($data, $options);
return $result;
}
}