Update libs

This commit is contained in:
Thomas 2025-04-03 10:09:21 +02:00
parent 16a398e852
commit f0881c2d51
3 changed files with 605 additions and 597 deletions

View file

@ -41,7 +41,7 @@
"symfony/web-link": "7.0.*", "symfony/web-link": "7.0.*",
"symfony/yaml": "7.0.*", "symfony/yaml": "7.0.*",
"twig/extra-bundle": "^2.12|^3.0", "twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^2.12|^3.0" "twig/twig": "v3.15.0"
}, },
"config": { "config": {
"allow-plugins": { "allow-plugins": {

1196
composer.lock generated

File diff suppressed because it is too large Load diff

View file

@ -283,7 +283,7 @@ class FediPlanController extends AbstractController
name: 'load_more', name: 'load_more',
options: ['expose' => true] options: ['expose' => true]
)] )]
public function loadMoreAction(Mastodon_api $mastodon_api, string $max_id = null): JsonResponse public function loadMoreAction(Mastodon_api $mastodon_api, ?string $max_id = null): JsonResponse
{ {
/** @var $user MastodonAccount */ /** @var $user MastodonAccount */
$user = $this->getUser(); $user = $this->getUser();
@ -310,7 +310,7 @@ class FediPlanController extends AbstractController
defaults: ['_locale'=>'en'], defaults: ['_locale'=>'en'],
methods: ['POST'] methods: ['POST']
)] )]
public function deleteMessage(Mastodon_api $mastodon_api, string $id = null): JsonResponse public function deleteMessage(Mastodon_api $mastodon_api, ?string $id = null): JsonResponse
{ {
$user = $this->getUser(); $user = $this->getUser();
$mastodon_api->set_url("https://" . $user->getInstance()); $mastodon_api->set_url("https://" . $user->getInstance());