Skip to content

Commit 6b27860

Browse files
committed
Merge pull request #1208: Apply risky Code Style rules
1 parent 5c6ca84 commit 6b27860

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

src/Config/StemplerConfig.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function getProcessors(): array
4343
{
4444
$processors = [];
4545
foreach ($this->config['processors'] as $processor) {
46-
if (is_object($processor) && !$processor instanceof Autowire) {
46+
if (\is_object($processor) && !$processor instanceof Autowire) {
4747
$processors[] = $processor;
4848
continue;
4949
}

src/Visitor/FormatHTML.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ private function indentContent(string $content, int $level, int $position = self
110110
}
111111

112112
if ($position === self::BEFORE_CLOSE) {
113-
$result .= $line . "\n" . \str_repeat(self::INDENT, max($level - 1, 0));
113+
$result .= $line . "\n" . \str_repeat(self::INDENT, \max($level - 1, 0));
114114
break;
115115
}
116116

tests/FormatTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function testFormatDiv4(): void
4646
4747
</pre>
4848
extra spaces
49-
</div>', str_replace("\r", '', $s->get('format/f4', new ViewContext())->render([])));
49+
</div>', \str_replace("\r", '', $s->get('format/f4', new ViewContext())->render([])));
5050
}
5151

5252
public function testFormatDiv5(): void

tests/config/views.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
return [
46
'cache' => [
57
'enabled' => false,

0 commit comments

Comments
 (0)