Skip to content

Commit 03406da

Browse files
committed
Better documentation links
1 parent 5663a94 commit 03406da

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -147,15 +147,15 @@ foreach ($cursors as $cursor)
147147
```
148148

149149
## Documentation
150-
+ [Setup](docs/1. Setup.md)
151-
+ [Active Record](docs/2. Active Record.md)
152-
+ [Active Table](docs/3. Active Table.md)
153-
+ [Cursors](docs/4. Cursors.md)
154-
+ [Virtual Fields](docs/5. Virtual Fields.md)
155-
+ [Migrations](docs/6. Migrations.md)
156-
+ [Validation](docs/7. Validation.md)
157-
+ [Translations](docs/8. Translations.md)
158-
+ [Miscellaneous](docs/9. Miscellaneous.md)
150+
+ [Setup](<https://github.com/phpfui/ORM/blob/main/docs/1. Setup.md>)
151+
+ [Active Record](<https://github.com/phpfui/ORM/blob/main/docs/2. Active Record.md>)
152+
+ [Active Table](<https://github.com/phpfui/ORM/blob/main/docs/3. Active Table.md>)
153+
+ [Cursors](<https://github.com/phpfui/ORM/blob/main/docs/4. Cursors.md>)
154+
+ [Virtual Fields](<https://github.com/phpfui/ORM/blob/main/docs/5. Virtual Fields.md>)
155+
+ [Migrations](<https://github.com/phpfui/ORM/blob/main/docs/6. Migrations.md>)
156+
+ [Validation](<https://github.com/phpfui/ORM/blob/main/docs/7. Validation.md>)
157+
+ [Translations](<https://github.com/phpfui/ORM/blob/main/docs/8. Translations.md>)
158+
+ [Miscellaneous](<https://github.com/phpfui/ORM/blob/main/docs/9. Miscellaneous.md>)
159159

160160
## Full Class Documentation
161161
[PHPFUI/ORM](http://phpfui.com/?n=PHPFUI\ORM)

docs/2. Active Record.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,4 +135,4 @@ Notice that we did not have to save the customer record. By assigning it to the
135135
You can always just assign the id's directly: `$orderDetail->purchase_order_id = $purchase_order->purchase_order_id;`. Saving the OrderDetail record is up to you.
136136

137137
### Other Types Of Related Records
138-
See Virtual Fields for information on how to impliment child or many to many relationships.
138+
See [Virtual Fields](<https://github.com/phpfui/ORM/blob/main/docs/5. Virtual Fields.md>) for information on how to impliment child or many to many relationships.

0 commit comments

Comments
 (0)