Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBadura committed Mar 21, 2024
1 parent a12b247 commit 9a2948a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@
/psalm-baseline.xml export-ignore
/test/ export-ignore
/tools/ export-ignore
/bin/ export-ignore
10 changes: 9 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,12 @@ docs: mkdocs
cd docs && python3 -m mkdocs serve

mkdocs: ## run mkdocs
cd docs && pip3 install -r requirements.txt
cd docs && pip3 install -r requirements.txt

docs-extract-php:
bin/docs-extract-php-code

docs-inject-php:
bin/docs-inject-php-code

docs-format: docs-extract-php docs-inject-php
1 change: 1 addition & 0 deletions bin/docs-inject-php-code
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ foreach ($finder as $file) {
*/
foreach ($result as $node) {
if ($node->getInfo() !== 'php') {
$node->setLiteral(trim($node->getLiteral()));
continue;
}

Expand Down
5 changes: 0 additions & 5 deletions docs/pages/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,6 @@ A lightweight but also all-inclusive event sourcing library with a focus on deve

```bash
composer require patchlevel/event-sourcing





```
## Integration

Expand Down
5 changes: 0 additions & 5 deletions docs/pages/subscription.md
Original file line number Diff line number Diff line change
Expand Up @@ -392,11 +392,6 @@ stateDiagram-v2
Error --> [*]
Detached --> Active
Detached --> [*]
```
### New

Expand Down

0 comments on commit 9a2948a

Please sign in to comment.