Skip to content

Commit

Permalink
requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioRadu committed May 7, 2024
1 parent 55c2f3f commit 8cb9171
Showing 1 changed file with 23 additions and 21 deletions.
44 changes: 23 additions & 21 deletions docs/book/v4/tutorials/create-book-module.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,29 @@

The below file structure is just an example, you can have multiple components such as event listeners, wrappers, etc.

/src/
/Book/
/src/
/Collection/
/BookCollection.php
/Entity/
/Book.php
/Handler/
/BookHandler.php
/Repository/
/BookRepository.php
/Service/
/BookService.php
/InputFilter/
/Input/
/NameInput.php
/AuthorInput.php
/ReleaseDateInput.php
/BookInputFilter.php
ConfigProvider.php
RoutesDelegator.php
```

Check failure on line 7 in docs/book/v4/tutorials/create-book-module.md

View workflow job for this annotation

GitHub Actions / ci / QA Checks (Documentation Linting [8.2, latest], ubuntu-latest, laminas/laminas-continuous-integra...

Fenced code blocks should have a language specified [Context: "```"]

Check failure on line 7 in docs/book/v4/tutorials/create-book-module.md

View workflow job for this annotation

GitHub Actions / ci / QA Checks (Documentation Linting [8.2, latest], ubuntu-latest, laminas/laminas-continuous-integra...

Fenced code blocks should have a language specified [Context: "```"]
/src/
/Book/
/src/
/Collection/
/BookCollection.php
/Entity/
/Book.php
/Handler/
/BookHandler.php
/Repository/
/BookRepository.php
/Service/
/BookService.php
/InputFilter/
/Input/
/NameInput.php
/AuthorInput.php
/ReleaseDateInput.php
/BookInputFilter.php
ConfigProvider.php
RoutesDelegator.php
```

* `src/Book/src/Collection/BookCollection.php` - a collection refers to a container for a group of related objects, typically used to manage sets of related entities fetched from a database
* `src/Book/src/Entity/Book.php` - an entity refers to a PHP class that represents a persistent object or data structure
Expand Down

0 comments on commit 8cb9171

Please sign in to comment.