From 1c134a2cdd07baf111951fa816addc8defe66b25 Mon Sep 17 00:00:00 2001 From: lrljoe Date: Sun, 5 Nov 2023 22:51:34 +0000 Subject: [PATCH] Fix styling --- doctum-config.php | 66 +++++++++++++++++++++++------------------------ 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/doctum-config.php b/doctum-config.php index f2d75656f..461333e77 100644 --- a/doctum-config.php +++ b/doctum-config.php @@ -1,33 +1,33 @@ -files() - ->name('*.php') - ->exclude('Resources') - ->exclude('Tests') - ->in($dir); - -// generate documentation for all v2.0.* tags, the 2.0 branch, and the main one -$versions = GitVersionCollection::create($dir) - // In a non case-sensitive way, tags containing "PR", "RC", "BETA" and "ALPHA" will be filtered out - // To change this, use: `$versions->setFilter(static function (string $version): bool { // ... });` - ->add('master', '3.x branch') - ->add('v2-master', '2.x branch') - ->add('v1', '1.x branch'); - -return new Doctum($iterator, [ - 'versions' => $versions, - 'title' => 'Rappasoft - Laravel Livewire Tables', - 'build_dir' => __DIR__.'/build/%version%', - 'cache_dir' => __DIR__.'/cache/%version%', - 'source_dir' => dirname($dir).'/', - 'remote_repository' => new GitHubRemoteRepository('rappasoft/laravel-livewire-tables', dirname($dir)), - 'default_opened_level' => 2, // optional, 2 is the default value -]); +files() + ->name('*.php') + ->exclude('Resources') + ->exclude('Tests') + ->in($dir); + +// generate documentation for all v2.0.* tags, the 2.0 branch, and the main one +$versions = GitVersionCollection::create($dir) + // In a non case-sensitive way, tags containing "PR", "RC", "BETA" and "ALPHA" will be filtered out + // To change this, use: `$versions->setFilter(static function (string $version): bool { // ... });` + ->add('master', '3.x branch') + ->add('v2-master', '2.x branch') + ->add('v1', '1.x branch'); + +return new Doctum($iterator, [ + 'versions' => $versions, + 'title' => 'Rappasoft - Laravel Livewire Tables', + 'build_dir' => __DIR__.'/build/%version%', + 'cache_dir' => __DIR__.'/cache/%version%', + 'source_dir' => dirname($dir).'/', + 'remote_repository' => new GitHubRemoteRepository('rappasoft/laravel-livewire-tables', dirname($dir)), + 'default_opened_level' => 2, // optional, 2 is the default value +]);