From 11d3c7c0105a09ca007fc51925373ef5da168a9d Mon Sep 17 00:00:00 2001 From: Dean Blackborough Date: Tue, 10 Dec 2019 22:44:21 +0000 Subject: [PATCH] New release v3.18.1 - Updated CHANGELOG and added credit to README. - PHPDoc correction --- CHANGELOG.md | 4 ++++ README.md | 1 + src/Parser/Parse.php | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14d2392..d6dcc28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ Full changelog for PHP Quill Renderer +## v3.18.1 - 2019-12-10 + +* Videos with custom attributes supported, thank you [Nicholas Humphries](https://github.com/Humni). + ## v3.18.0 - 2019-11-24 * Custom attributes values which aren't strings are ignored. diff --git a/README.md b/README.md index 329fe62..bd5d7e3 100644 --- a/README.md +++ b/README.md @@ -162,6 +162,7 @@ for use under the MIT License (MIT). * [Lode Claassen](https://github.com/lode) [PR121] - Missing supported format in exception messages. * [Lode Claassen](https://github.com/lode) [PR122] - Validation code DRY. * [Lode Claassen](https://github.com/lode) [PR123] - Allow already decoded json to be passed to parser. +* [Nicholas Humphries](https://github.com/Humni) [PR128] - Videos with attributes not supported. ## Coding standards credits diff --git a/src/Parser/Parse.php b/src/Parser/Parse.php index fd0780a..de8fd42 100644 --- a/src/Parser/Parse.php +++ b/src/Parser/Parse.php @@ -506,7 +506,7 @@ public function video(array $quill) /** * Checks the delta json is valid and can be decoded * - * @param $quill_json Quill json string + * @param array $quill_json Quill json string * * @return boolean */