Skip to content

Commit

Permalink
finalized all links
Browse files Browse the repository at this point in the history
  • Loading branch information
jkniest committed Jun 17, 2024
1 parent 01e4842 commit 6652fac
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 26 deletions.
12 changes: 6 additions & 6 deletions docs/examples/customer.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ class CustomerFixture extends Fixture
```

## Used in this example:
- [Command to generate the UUIDs](#todo)
- [`getStorefrontSalesChannel` helper method](#todo)
- [`ensureNotEmpty` helper method](#todo)
- [`getInvoicePaymentMethod` helper method](#todo)
- [`getNotSpecifiedSalutation` helper method](#todo)
- [`getCountry` helper method](#todo)
- [Command to generate the UUIDs](/writing/available-commands#get-random-uuid)
- [`getStorefrontSalesChannel` helper method](/helpers/sales-channel#getstorefrontsaleschannel)
- [`ensureNotEmpty` helper method](/helpers/utility#ensurenotempty)
- [`getInvoicePaymentMethod` helper method](/helpers/payment-method#getinvoicepaymentmethod)
- [`getNotSpecifiedSalutation` helper method](/helpers/salutation#getnotspecifiedsalutation)
- [`getCountry` helper method](/helpers/language-locale#getcountry)
12 changes: 6 additions & 6 deletions docs/examples/product.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ class ProductFixture extends Fixture
```

## Used in this example:
- [Command to generate the UUIDs](#todo)
- [`getStorefrontSalesChannel` helper method](#todo)
- [`ensureNotEmpty` helper method](#todo)
- [`getRootCategory` helper method](#todo)
- [`getTax19` helper method](#todo)
- [`getCurrencyEuro` helper method](#todo)
- [Command to generate the UUIDs](/writing/available-commands#get-random-uuid)
- [`getStorefrontSalesChannel` helper method](/helpers/sales-channel#getstorefrontsaleschannel)
- [`ensureNotEmpty` helper method](/helpers/utility#ensurenotempty)
- [`getRootCategory` helper method](/helpers/category#getrootcategory)
- [`getTax19` helper method](/helpers/tax.html#gettax19)
- [`getCurrencyEuro` helper method](/helpers/currency#getcurrencyeuro)
28 changes: 14 additions & 14 deletions docs/writing/fixture-helper.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,19 @@ class MyExampleService {
## Available helpers
Below is a list of all available helper categories. Please refer to the documentation for each category to see all the available methods:

| Helper | Description | Documentation |
| ----------------- | ------------------------------------------------------- | ---------------------------------- |
| Utility Methods | Some general methods to help writing fixtures | [Utility Methods](#todo) |
| Media | Methods to interact with the media entities | [Media Helpers](#todo) |
| Category | Methods to interact with the categoriy entities | [Category Helpers](#todo) |
| Sales Channel | Methods to interact with the sales channel entities | [Sales Channel Helpers](#todo) |
| Salutation | Methods to interact with the salutation entities | [Salutation Helpers](#todo) |
| CMS | Methods to interact with the cms page entities | [CMS Helpers](#todo) |
| Payment Method | Methods to interact with the payment method entities | [Payment Method Helpers](#todo) |
| Shipping Method | Methods to interact with the shipping method entities | [Shipping Method Helpers](#todo) |
| Language & Locale | Methods to interact with the language & locale entities | [Language & Locale Helpers](#todo) |
| Currency | Methods to interact with the currency entities | [Currency Helpers](#todo) |
| Tax | Methods to interact with the tax entities | [Tax Helpers](#todo) |
| Database | Methods to interact with the database itself | [Database Helpers](#todo) |
| Helper | Description | Documentation |
| ----------------- | ------------------------------------------------------- | ----------------------------------------------------- |
| Utility Methods | Some general methods to help writing fixtures | [Utility Methods](/helpers/utility) |
| Media | Methods to interact with the media entities | [Media Helpers](/helpers/media) |
| Category | Methods to interact with the categoriy entities | [Category Helpers](/helpers/category) |
| Sales Channel | Methods to interact with the sales channel entities | [Sales Channel Helpers](/helpers/sales-channel) |
| Salutation | Methods to interact with the salutation entities | [Salutation Helpers](/helpers/salutation) |
| CMS | Methods to interact with the cms page entities | [CMS Helpers](/helpers/cms) |
| Payment Method | Methods to interact with the payment method entities | [Payment Method Helpers](/helpers/payment-method) |
| Shipping Method | Methods to interact with the shipping method entities | [Shipping Method Helpers](/helpers/shipping-method) |
| Language & Locale | Methods to interact with the language & locale entities | [Language & Locale Helpers](/helpers/language-locale) |
| Currency | Methods to interact with the currency entities | [Currency Helpers](/helpers/currency) |
| Tax | Methods to interact with the tax entities | [Tax Helpers](/helpers/tax) |
| Database | Methods to interact with the database itself | [Database Helpers](/helpers/database) |

Each helper category provides specialized methods to make working with different aspects of your Shopware setup easier and more efficient.

0 comments on commit 6652fac

Please sign in to comment.