diff --git a/.gitignore b/.gitignore index a47101f..a4c73ba 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ # Hide jetbrains files -.idea \ No newline at end of file +.idea diff --git a/README.md b/README.md index f1c0c89..d2262d2 100644 --- a/README.md +++ b/README.md @@ -189,4 +189,3 @@ If you have any suggestions, please [raise an issue](https://github.com/benfreke - Obviously the [OctoberCMS](http://octobercms.com/) creators, [Samuel Georges](https://github.com/daftspunk) and [Aleksey Bobkov](https://github.com/alekseybobkov) - [DanielHitchen](https://github.com/DanielHitchen) for bug reporting, enhancements and requests/ideas - [Adis](https://github.com/adisos) for help with the 1.1.x releases - diff --git a/updates/seed_all_tables.php b/updates/seed_all_tables.php index 2f0c653..efa735c 100644 --- a/updates/seed_all_tables.php +++ b/updates/seed_all_tables.php @@ -12,9 +12,9 @@ public function run() // This is a root node $mainMenu = Menu::create( [ - 'title' => 'Main Menu', + 'title' => 'Main Menu', 'description' => 'The main menu items', - 'url' => '' + 'url' => '', ] ); @@ -23,7 +23,7 @@ public function run() [ 'title' => 'Home Page', 'description' => 'The primary navigation level', - 'url' => 'home' + 'url' => 'home', ] ); @@ -32,14 +32,14 @@ public function run() [ 'title' => 'Ajax Framework', 'description' => 'Secondary item 1', - 'url' => 'ajax' + 'url' => 'ajax', ] ); $homePage->children()->create( [ 'title' => 'Plugin Components', 'description' => 'Secondary item 2', - 'url' => 'plugins' + 'url' => 'plugins', ] ); @@ -47,7 +47,7 @@ public function run() [ 'title' => 'Menu titles do not', 'description' => 'Tertiary item 1', - 'url' => '' + 'url' => '', ] ); @@ -55,7 +55,7 @@ public function run() [ 'title' => 'Have to match page titles!', 'description' => 'Tertiary item 2', - 'url' => '' + 'url' => '', ] ); $ajaxDemo->children()->create( @@ -63,8 +63,8 @@ public function run() 'title' => 'Google Search', 'description' => 'External link example', 'is_external' => true, - 'url' => 'http://www.google.com' + 'url' => 'http://www.google.com', ] ); } -} \ No newline at end of file +} diff --git a/updates/version.yaml b/updates/version.yaml index 9da6a3c..f3b2409 100644 --- a/updates/version.yaml +++ b/updates/version.yaml @@ -56,4 +56,4 @@ 1.4.8: - Merged PR to fix re-order errors. Thanks @CptMeatball 1.5.0: - - Fixed bugs preventing postgres and sqlite support \ No newline at end of file + - Fixed bugs preventing postgres and sqlite support