Skip to content

Commit 132ac06

Browse files
committed
small typos fixes in modules section
1 parent 8da6ac9 commit 132ac06

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

docs/framework/modules-and-third-party-libraries.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,16 @@ new module will reside in `src/Mymodule` directory, and the module test at `test
2929
Antidot framework is an open-source ecosystem friendly, and it allows easily to manage third-party libraries or packages
3030
making use of the [Laminas Config Provider](https://docs.laminas.dev/laminas-config-aggregator/config-providers/) component.
3131

32-
With Composer, you can install any package available in [Packagist](https://packagist.org/), then if you want to have it available in the DI container,
33-
you need to configure wanted dependency in a config file following [the config instructions](/framework/dependency-injection.md).
32+
With Composer, you can install any package available in [Packagist](https://packagist.org/), then if you want to have
33+
it available in the DI container, you need to configure wanted dependency in a config file following
34+
[the config instructions](/framework/dependency-injection.md).
3435

35-
When you want to add complex objects to the DI container you can take advantage of using factory classes, these classes
36-
must be invokables with a PSR-11 container interface as first parameter, and as recommendation,
37-
it doesn't have to have any dependency in its constructor.
36+
When you want to add complex objects to the DI container you can take advantage of using factory classes, these classes
37+
must be invokable with a PSR-11 container interface as the first parameter, and as a recommendation, it doesn't have
38+
to have any dependency in its constructor.
3839

39-
For example integrating [Doctrine DBAL](https://www.doctrine-project.org/projects/doctrine-dbal/en/2.10/index.html) connection for MySQL:
40+
For example, integrating [Doctrine DBAL](https://www.doctrine-project.org/projects/doctrine-dbal/en/2.10/index.html)
41+
connection for MySQL:
4042

4143
Install it by composer
4244

0 commit comments

Comments
 (0)