Upgrade to 3.1.0

This commit is contained in:
Bastian Allgeier
2019-03-19 11:07:14 +01:00
parent 418db4b09b
commit 6e074142f1
98 changed files with 1266 additions and 299 deletions

View File

@@ -6,20 +6,20 @@ use Exception;
use Kirby\Toolkit\F;
/**
* Universal Data writer and reader class.
* The `Data` class provides readers and
* writers for data. The class comes with
* three handlers for `json`, `yaml` and
* `txt` encoded data, but can be extended
* and customized.
*
* The read and write methods automatically
* detect, which data handler to use in order
* to correctly encode and decode passed data.
*
* Data Handlers for the class can be
* extended and customized.
*
* @package Kirby
* @author Bastian Allgeier <bastian@getkirby.com>
* @link http://getkirby.com
* @copyright 2012 Bastian Allgeier
* @license MIT
* @copyright Bastian Allgeier
*/
class Data
{