Skip to content

Commit 97c79c5

Browse files
committed
chore: simplify namespace import in classes config
1 parent 9de0c28 commit 97c79c5

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

config/app.php

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

33
declare(strict_types=1);
44

5-
use DoWStarterTheme\Common\View\Finder\ViewFinderProvider;
5+
// phpcs:disable SlevomatCodingStandard.Namespaces.UseFromSameNamespace.UseFromSameNamespace
6+
67
use DoWStarterTheme\Common\{
78
Customizer,
89
Helpers,
@@ -11,15 +12,18 @@
1112
Managers as CommonManagers,
1213
Menu,
1314
Shortcodes,
15+
View,
1416
Widget,
1517
WordPress,
1618
};
17-
use DoWStarterTheme\Features\BlockSpacing;
18-
use DoWStarterTheme\Features\ReusableContent;
19+
use DoWStarterTheme\Features\{
20+
BlockSpacing,
21+
ReusableContent,
22+
};
1923

2024
return [
2125
'providers' => [
22-
ViewFinderProvider::class,
26+
View\Finder\ViewFinderProvider::class,
2327
],
2428

2529
'components' => [

0 commit comments

Comments
 (0)