Skip to content

Commit 6924477

Browse files
authored
Merge pull request #6 from vedmant/analysis-qMZJgL
Apply fixes from StyleCI
2 parents eb3c716 + 31a0f6d commit 6924477

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/helpers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
if (! function_exists('shortcodes')) {
66

77
/**
8-
* Render shortcodes
8+
* Render shortcodes.
99
*
1010
* @param string $string
1111
* @return string|HtmlString

tests/Unit/HelpersTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace Vedmant\LaravelShortcodes\Tests\Unit;
44

5-
use Vedmant\LaravelShortcodes\Tests\Resources\BShortcode;
65
use Vedmant\LaravelShortcodes\Tests\TestCase;
6+
use Vedmant\LaravelShortcodes\Tests\Resources\BShortcode;
77

88
class HelpersTest extends TestCase
99
{
@@ -17,6 +17,6 @@ public function testRenderWithHelper()
1717
$this->manager->add('b', BShortcode::class);
1818

1919
$rendered = \shortcodes('[b class="test"]Content[/b]');
20-
$this->assertEquals("<b class=\"test\">Content</b>", (string) $rendered);
20+
$this->assertEquals('<b class="test">Content</b>', (string) $rendered);
2121
}
2222
}

0 commit comments

Comments
 (0)