Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/code-quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Code Quality
on:
push:
pull_request:
branches: [ 1.x ]
branches: [ '*.x' ]
workflow_dispatch:
schedule:
- cron: '0 8 * * *'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Tests
on:
push:
pull_request:
branches: [ 1.x ]
branches: [ '*.x' ]
workflow_dispatch:
schedule:
- cron: '0 8 * * *'
Expand Down
10 changes: 5 additions & 5 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -517,12 +517,12 @@ This command provides insights into which routes and parameters are associated w
- [Configure Purge Subscriptions Using YAML](purge-subscriptions-using-yaml.md)
- [Custom Expression Language Functions](custom-expression-language-functions.md)

[0]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/Purger/PurgerInterface.php
[0]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/Purger/PurgerInterface.php

[1]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/Attribute/PurgeOn.php
[1]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/Attribute/PurgeOn.php

[2]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/Attribute/TargetedProperties.php
[2]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/Attribute/TargetedProperties.php

[3]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/Listener/Enum/Action.php
[3]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/Listener/Enum/Action.php

[4]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/Test/InteractsWithPurgatory.php
[4]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/Test/InteractsWithPurgatory.php
2 changes: 1 addition & 1 deletion docs/complex-route-params.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,4 +176,4 @@ class MyService
}
```

[0]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/Attribute/AsRouteParamService.php
[0]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/Attribute/AsRouteParamService.php
2 changes: 1 addition & 1 deletion docs/custom-expression-language-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ class ShouldPurge
}
```

[0]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/Attribute/AsExpressionLanguageFunction.php
[0]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/Attribute/AsExpressionLanguageFunction.php
2 changes: 1 addition & 1 deletion docs/custom-purgers.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ purgatory:

In this example, the alias `cloudflare` is used to refer to the custom purger.

[0]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/Purger/PurgerInterface.php
[0]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/Purger/PurgerInterface.php
4 changes: 2 additions & 2 deletions docs/custom-route-providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ App\RouteProvider\MyPostRouteProvider:
By tagging it with `purgatory.route_provider`, the bundle will automatically recognize and use your custom route
provider when processing purge requests.

[0]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/RouteProvider/RouteProviderInterface.php
[0]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/RouteProvider/RouteProviderInterface.php

[1]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/RouteProvider/PurgeRoute.php
[1]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/RouteProvider/PurgeRoute.php
Loading