-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
179 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
Updating project | ||
|
||
Version main | ||
------------ | ||
|
||
|
||
Parsing Foo\Foo total: 62 errors | ||
Parsing Head total: 62 errors | ||
Parsing Body total: 62 errors | ||
Parsing Footer total: 62 errors | ||
Parsing IntersectionDocument total: 62 errors | ||
Parsing Models\LaravelModel total: 62 errors | ||
Parsing RoundaboutIntersection\Foo total: 62 errors | ||
Parsing RoundaboutIntersection\Bar total: 62 errors | ||
Parsing RoundaboutIntersection\FooAndBar total: 62 errors | ||
Parsing RoundaboutIntersection\Baz total: 62 errors | ||
Parsing IPv4Address total: 62 errors | ||
Parsing MyContainer total: 63 errors | ||
Parsing Collection total: 63 errors | ||
Parsing DogCollection total: 63 errors | ||
Parsing PersistentCollection total: 63 errors | ||
Parsing Cat total: 63 errors | ||
Parsing Foo total: 63 errors | ||
Parsing Bar total: 63 errors | ||
Parsing SuperCoolLibrary\Meta total: 63 errors | ||
Parsing Net_Sample total: 63 errors | ||
Parsing done | ||
|
||
Rendering Global index.html | ||
Rendering Global doc-index.html | ||
Rendering Global namespaces.html | ||
Rendering Global classes.html | ||
Rendering Global interfaces.html | ||
Rendering Global traits.html | ||
Rendering Global opensearch.xml | ||
Rendering Global search.html | ||
Rendering Global doctum.js | ||
Rendering Global doctum-search.json | ||
Rendering Namespace [Global Namespace] | ||
Rendering Namespace Foo | ||
Rendering Namespace Illuminate | ||
Rendering Namespace Illuminate\Database | ||
Rendering Namespace Illuminate\Database\Eloquent | ||
Rendering Namespace Models | ||
Rendering Namespace RoundaboutIntersection | ||
Rendering Namespace SuperCoolLibrary | ||
Rendering Class Bar | ||
Rendering Class Body | ||
Rendering Class Cat | ||
Rendering Class Collection | ||
Rendering Class DogCollection | ||
Rendering Class Foo | ||
Rendering Class Foo\Foo | ||
Rendering Class Footer | ||
Rendering Class Head | ||
Rendering Class IPv4Address | ||
Rendering Class Illuminate\Database\Eloquent\Builder | ||
Rendering Class IntersectionDocument | ||
Rendering Class Models\LaravelModel | ||
Rendering Class MyContainer | ||
Rendering Class Net_Sample | ||
Rendering Class PersistentCollection | ||
Rendering Class RoundaboutIntersection\Bar | ||
Rendering Class RoundaboutIntersection\Baz | ||
Rendering Class RoundaboutIntersection\Foo | ||
Rendering Class RoundaboutIntersection\FooAndBar | ||
Rendering Class SuperCoolLibrary\Meta | ||
Rendering done | ||
|
||
|
||
Version Updated C Removed C | ||
main 21 0 | ||
|
||
|
||
Version Updated C Updated N Removed C Removed N | ||
main 21 8 0 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
|
||
declare(strict_types = 1); | ||
|
||
use Doctum\Doctum; | ||
use Symfony\Component\Finder\Finder; | ||
|
||
$rootDir = __DIR__ . '/src'; | ||
$iterator = Finder::create() | ||
->files() | ||
->sortByName() | ||
->name('*.php') | ||
->in($rootDir); | ||
|
||
return new Doctum( | ||
$iterator, | ||
[ | ||
'theme' => 'default', | ||
'title' => 'API Documentation', | ||
'build_dir' => __DIR__ . '/build/html', | ||
'cache_dir' => __DIR__ . '/cache/html', | ||
'insert_todos' => true, | ||
'language' => 'fr', | ||
'base_url' => 'http://8.1.local/@code-lts/doctum/tests/phar/data/build/html/', | ||
'favicon' => 'https://williamdes.eu/assets/logo/williamdes_x64.png', | ||
] | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters