Skip to content

Commit

Permalink
Merge pull request #5688 from greg0ire/use-rst-syntax
Browse files Browse the repository at this point in the history
Use rst syntax
  • Loading branch information
greg0ire committed Sep 23, 2022
2 parents a0bd0f1 + 09542cf commit a5a5877
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/en/reference/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ The following database vendors are currently supported:
- SQLite

The Doctrine DBAL can be used independently of the
[Doctrine Object-Relational Mapper (ORM)](https://www.doctrine-project.org/projects/orm.html).
In order to use the DBAL all you need is
the class loader provided by [Composer](https://getcomposer.org/), to be able to autoload the classes:
`Doctrine Object-Relational Mapper (ORM) <https://www.doctrine-project.org/projects/orm.html>`_.
In order to use the DBAL all you need is the class loader provided by
`Composer <https://getcomposer.org/>`_, to be able to autoload the
classes:

.. code-block:: php
<?php
require_once 'vendor/autoload.php';
Now you are able to load classes that are in the
``/path/to/doctrine`` directory like
``/path/to/doctrine/Doctrine/DBAL/DriverManager.php`` which we will
use later in this documentation to configure our first Doctrine
DBAL connection.

0 comments on commit a5a5877

Please sign in to comment.