1
0
Fork 0
mirror of synced 2024-06-03 11:24:48 +12:00

QA bug fixes

This commit is contained in:
Matej Bačo 2022-05-17 08:33:24 +00:00
parent 917faa07db
commit ce216664cc
2 changed files with 9 additions and 9 deletions

14
composer.lock generated
View file

@ -6320,16 +6320,16 @@
},
{
"name": "twig/twig",
"version": "v3.4.0",
"version": "v3.4.1",
"source": {
"type": "git",
"url": "https://github.com/twigphp/Twig.git",
"reference": "ed19f4bf9d19c4ef920b5d8243910bd32e85b9ba"
"reference": "e939eae92386b69b49cfa4599dd9bead6bf4a342"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/twigphp/Twig/zipball/ed19f4bf9d19c4ef920b5d8243910bd32e85b9ba",
"reference": "ed19f4bf9d19c4ef920b5d8243910bd32e85b9ba",
"url": "https://api.github.com/repos/twigphp/Twig/zipball/e939eae92386b69b49cfa4599dd9bead6bf4a342",
"reference": "e939eae92386b69b49cfa4599dd9bead6bf4a342",
"shasum": ""
},
"require": {
@ -6380,7 +6380,7 @@
],
"support": {
"issues": "https://github.com/twigphp/Twig/issues",
"source": "https://github.com/twigphp/Twig/tree/v3.4.0"
"source": "https://github.com/twigphp/Twig/tree/v3.4.1"
},
"funding": [
{
@ -6392,7 +6392,7 @@
"type": "tidelift"
}
],
"time": "2022-05-15T06:25:28+00:00"
"time": "2022-05-17T05:48:52+00:00"
},
{
"name": "vimeo/psalm",
@ -6576,5 +6576,5 @@
"platform-overrides": {
"php": "8.0"
},
"plugin-api-version": "2.1.0"
"plugin-api-version": "2.3.0"
}

View file

@ -5,7 +5,7 @@ namespace Appwrite\Utopia\Response\Filters;
use Appwrite\Utopia\Response;
use Appwrite\Utopia\Response\Filter;
class V14 extends Filter
class V13 extends Filter
{
// Convert 0.14 Data format to 0.13 format
public function parse(array $content, string $model): array
@ -81,7 +81,7 @@ class V14 extends Filter
unset($content['userEmail']);
unset($content['teamName']);
return $content;
}