Skip to content

Commit f380a2e

Browse files
committed
Applied coding standards
1 parent 2d5916c commit f380a2e

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

src/Service/BaseImporter.php

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ protected function sanitizeText(string $str): ?string
3232
return $str;
3333
}
3434

35-
/**
36-
* @param array<int,mixed>|null $list
37-
*
38-
* @return string|null
39-
*/
35+
/**
36+
* @param array<int,mixed>|null $list
37+
*
38+
* @return string|null
39+
*/
4040
protected function convertList(?array $list): ?string
4141
{
4242
if ($list) {
@@ -46,12 +46,12 @@ protected function convertList(?array $list): ?string
4646
return '';
4747
}
4848

49-
/**
50-
* @param $obj
51-
*
52-
* @return string|null
53-
*/
54-
protected function convertLink(?Object $obj): ?string
49+
/**
50+
* @param $obj
51+
*
52+
* @return string|null
53+
*/
54+
protected function convertLink(?object $obj): ?string
5555
{
5656
if ($obj && $obj->Url && $obj->Description) {
5757
return '<a href="'.$obj->Url.'">'.$obj->Description.'</a>';

0 commit comments

Comments
 (0)