Fix relative links
Fix 2 relative links to other docs files
This commit is contained in:
parent
84eb175dbf
commit
001d5b7ed3
@ -51,7 +51,7 @@ Entities are PHP Objects that can be identified over many requests
|
|||||||
by a unique identifier or primary key. These classes don't need to extend any
|
by a unique identifier or primary key. These classes don't need to extend any
|
||||||
abstract base class or interface. An entity class must not be final
|
abstract base class or interface. An entity class must not be final
|
||||||
or contain final methods. Additionally it must not implement
|
or contain final methods. Additionally it must not implement
|
||||||
**clone** nor **wakeup**, unless it :doc:`does so safely <../cookbook/implementing-wakeup-or-clone>`.
|
**clone** nor **wakeup**, unless it `does so safely <../cookbook/implementing-wakeup-or-clone.rst>`_.
|
||||||
|
|
||||||
An entity contains persistable properties. A persistable property
|
An entity contains persistable properties. A persistable property
|
||||||
is an instance variable of the entity that is saved into and retrieved from the database
|
is an instance variable of the entity that is saved into and retrieved from the database
|
||||||
@ -157,7 +157,7 @@ The second block consists of the instantiation of the ORM
|
|||||||
``Configuration`` object using the Setup helper. It assumes a bunch
|
``Configuration`` object using the Setup helper. It assumes a bunch
|
||||||
of defaults that you don't have to bother about for now. You can
|
of defaults that you don't have to bother about for now. You can
|
||||||
read up on the configuration details in the
|
read up on the configuration details in the
|
||||||
:doc:`reference chapter on configuration <../reference/configuration>`.
|
`reference chapter on configuration <../reference/configuration.rst>`_.
|
||||||
|
|
||||||
The third block shows the configuration options required to connect
|
The third block shows the configuration options required to connect
|
||||||
to a database, in my case a file-based sqlite database. All the
|
to a database, in my case a file-based sqlite database. All the
|
||||||
|
Loading…
x
Reference in New Issue
Block a user