Skip to content

Commit 9435ecb

Browse files
author
Martin Brecht-Precht
committed
Code cleanup.
1 parent 2813b9d commit 9435ecb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Handler/HtmlTagBuilder/HtmlTagBuilder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ public function buildTag($type, $value = null, array $attributes = array(), $var
2525
{
2626
switch ($type) {
2727
case self::TYPE_CODE_BLOCK:
28-
/** @noinspection HtmlUnknownTag */
28+
/* @noinspection HtmlUnknownTag */
2929
return '<pre><code' . $this->getAttributeString($attributes) . '>' . $value . '</code></pre>';
3030
case self::TYPE_CODE_INLINE:
31-
/** @noinspection HtmlUnknownTag */
31+
/* @noinspection HtmlUnknownTag */
3232
return '<code' . $this->getAttributeString($attributes) . '>' . $value . '</code>';
3333
case self::TYPE_COMMENT:
3434
return '<!-- ' . $value . ' -->';

src/Handler/YamlHandler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ public function setWordWrap($wordWrap)
6262
public function getResult()
6363
{
6464
$indent = ($this->prettyPrint !== false) ? 4 : false;
65-
/** @noinspection PhpUndefinedClassInspection */
65+
/* @noinspection PhpUndefinedClassInspection */
6666
$yaml = new \Spyc();
67-
/** @noinspection PhpParamsInspection */
67+
/* @noinspection PhpParamsInspection */
6868
return $yaml->YAMLDump(parent::getResult(), $indent, $this->getWordWrap());
6969
}
7070

0 commit comments

Comments
 (0)