We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0805c28 + 60c0156 commit c332082Copy full SHA for c332082
1 file changed
src/ComponentsServiceProvider.php
@@ -37,7 +37,7 @@ private function setUpEvents(): void
37
{
38
Event::listen(VendorTagPublished::class, function (VendorTagPublished $event) {
39
foreach ($event->paths ?? [] as $path) {
40
- if (!is_dir($path)) {
+ if (! is_dir($path)) {
41
continue;
42
}
43
@@ -46,7 +46,7 @@ private function setUpEvents(): void
46
);
47
48
foreach ($iterator as $file) {
49
- if (!$file->isFile() || $file->getExtension() !== 'php') {
+ if (! $file->isFile() || $file->getExtension() !== 'php') {
50
51
52
0 commit comments