Skip to content

Commit 8faba19

Browse files
committed
[BUGFIX] 🐛 CGL: Correct PhpDocs
Replace wrongly described return types or attributes in PhpDoc comments.
1 parent 38fe005 commit 8faba19

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/Html5MiniTemplate.php

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Html5MiniTemplate
1414
/**
1515
* Stylesheet preselection
1616
*
17-
* @var array
17+
* @var array<string>
1818
*/
1919
protected $listOfStylesheets = [
2020
'bootstrap' => 'https://cdn.jsdelivr.net/gh/twbs/[email protected]/dist/css/bootstrap.min.css',
@@ -29,21 +29,21 @@ class Html5MiniTemplate
2929
/**
3030
* The document title
3131
*
32-
* @var array
32+
* @var string
3333
*/
3434
protected $title = '';
3535

3636
/**
3737
* The linked stylesheet
3838
*
39-
* @var array
39+
* @var string
4040
*/
4141
protected $stylesheet = 'example';
4242

4343
/**
4444
* The stylesheet render type
4545
*
46-
* @var array
46+
* @var string
4747
*/
4848
protected $stylesheetMode = self::STYLE_LINK;
4949

@@ -70,7 +70,6 @@ public function __construct()
7070
/**
7171
* Process all changes like custom content
7272
*
73-
* @param string $text Markup for document body
7473
* @return string
7574
*/
7675
protected function parseMarkup()

0 commit comments

Comments
 (0)