Skip to content

Commit

Permalink
fix: dead links in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Kreyu committed Jan 21, 2024
1 parent fb7da0e commit 4373e3c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/src/docs/components/filters.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ For reference, see [available filter types](../../reference/types/filter.md).

## Creating filter types

This bundle and integrations, such as [Doctrine ORM integration bundle](../integrations/doctrine-orm/installation.md), come with plenty of the [filter types](../../reference/types/filter.md).
This bundle comes with plenty of the [built-in filter types](../../reference/types/filter.md).
However, those may not cover complex cases. Luckily, creating custom filter types are easy.

Filter types are classes that implement [`FilterTypeInterface`](https://github.com/Kreyu/data-table-bundle/blob/main/src/Filter/Type/FilterTypeInterface.php). However, it's better to extend from the [`AbstractFilterType`](https://github.com/Kreyu/data-table-bundle/blob/main/src/Filter/Type/AbstractFilterType.php):
Expand Down
6 changes: 3 additions & 3 deletions docs/src/reference/types/filter.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

The following filter types are natively available in the bundle:

- [Callback](types/callback.md)
- [Search](types/search.md)
- [Filter](types/filter.md)
- [Callback](filter/callback.md)
- [Search](filter/search.md)
- [Filter](filter/filter.md)

## Doctrine ORM

Expand Down
2 changes: 1 addition & 1 deletion docs/src/reference/types/filter/options/doctrine-orm.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ class ProductDataTableType extends AbstractDataTableType
}
```

For more information about expression transformers, [read here](../../../../../docs/integrations/doctrine-orm/expression-transformers.md).
For more information about expression transformers, [read here](../../../../docs/integrations/doctrine-orm/expression-transformers.md).

0 comments on commit 4373e3c

Please sign in to comment.