Skip to content

Commit 7f48abb

Browse files
committed
Apply fixes from StyleCI
1 parent 030c931 commit 7f48abb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Console/Commands/CrudBackpackCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function handle()
6969

7070
// Create the menu item
7171
$this->call('backpack:add-menu-content', [
72-
'code' => "<x-backpack::menu-item title=\"". $fullNameWithSpaces ."\" icon=\"la la-question\" :link=\"backpack_url('".$nameKebab."')\" />",
72+
'code' => '<x-backpack::menu-item title="'.$fullNameWithSpaces."\" icon=\"la la-question\" :link=\"backpack_url('".$nameKebab."')\" />",
7373
]);
7474

7575
// if the application uses cached routes, we should rebuild the cache so the previous added route will

src/Console/Commands/PageBackpackCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public function handle()
102102

103103
// create the menu item
104104
$this->call('backpack:add-menu-content', [
105-
'code' => "<x-backpack::menu-item title=\"" . $nameTitle . "\" icon=\"la la-question\" :link=\"backpack_url('" . $route . "')\" />",
105+
'code' => '<x-backpack::menu-item title="'.$nameTitle."\" icon=\"la la-question\" :link=\"backpack_url('".$route."')\" />",
106106
]);
107107

108108
$url = backpack_url($route);

0 commit comments

Comments
 (0)