From f2ee3602ac0b48e7e53e9fe55ebe23ddcacd197c Mon Sep 17 00:00:00 2001 From: Philipp Date: Thu, 29 May 2025 19:14:43 +0200 Subject: [PATCH] Fix PHP-CS --- tests/src/Content/Text/BBCodeTest.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/src/Content/Text/BBCodeTest.php b/tests/src/Content/Text/BBCodeTest.php index e51bb997d0..472ebc52dd 100644 --- a/tests/src/Content/Text/BBCodeTest.php +++ b/tests/src/Content/Text/BBCodeTest.php @@ -294,23 +294,23 @@ Karl Marx - Die ursprüngliche Akkumulation public function dataBBCodesToMarkdown() { return [ - 'bug-7808-gt' => [ + 'bug-7808-gt' => [ 'expected' => '>`>`', 'text' => '>[code]>[/code]', ], - 'bug-7808-lt' => [ + 'bug-7808-lt' => [ 'expected' => '<`<`', 'text' => '<[code]<[/code]', ], - 'bug-7808-amp' => [ + 'bug-7808-amp' => [ 'expected' => '&`&`', 'text' => '&[code]&[/code]', ], - 'bug-12701-quotes' => [ + 'bug-12701-quotes' => [ 'expected' => '[![abc"fgh](https://domain.tld/photo/86912721086415cdc8e0a03226831581-1.png)](https://domain.tld/photos/user/image/86912721086415cdc8e0a03226831581)', 'text' => '[url=https://domain.tld/photos/user/image/86912721086415cdc8e0a03226831581][img=https://domain.tld/photo/86912721086415cdc8e0a03226831581-1.png]abc"fgh[/img][/url]', ], - 'bug-12701-no-quotes' => [ + 'bug-12701-no-quotes' => [ 'expected' => '[![abcfgh](https://domain.tld/photo/86912721086415cdc8e0a03226831581-1.png "abcfgh")](https://domain.tld/photos/user/image/86912721086415cdc8e0a03226831581)', 'text' => '[url=https://domain.tld/photos/user/image/86912721086415cdc8e0a03226831581][img=https://domain.tld/photo/86912721086415cdc8e0a03226831581-1.png]abcfgh[/img][/url]', ],