Skip to content

Commit 109a6de

Browse files
committed
fix compatibility with older Cache versions
FrameworkBundle 4.2 will be compatible with older versions of the Cache component. In those versions adapters don't implement `ResetInterface`. For backwards compatibility they still need to be tagged.
1 parent 316e212 commit 109a6de

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ CHANGELOG
44
1.0.0
55
-----
66

7-
* added `Service\ResetInterface` to provides a way to reset an object to its initial state
7+
* added `Service\ResetInterface` to provide a way to reset an object to its initial state

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ FAQ
2222

2323
The abstractions in this package are useful to achieve loose coupling and
2424
interoperability. By using the provided interfaces as type hints, you are able
25-
to reuse any implementations that match their contracts. It could be a Symfony
25+
to reuse any implementation that matches their contracts. It could be a Symfony
2626
component, or another one provided by the PHP community at large.
2727

2828
Depending on their semantics, some interfaces can be combined with autowiring to
@@ -34,12 +34,12 @@ any other means provided by your framework.)
3434

3535
### How is this different from PHP-FIG's PSRs?
3636

37-
When applicable, the provided contracts are built on top of PHP-FIG's PSR. We
37+
When applicable, the provided contracts are built on top of PHP-FIG's PSRs. We
3838
encourage relying on them and won't duplicate the effort. Still, the FIG has
3939
different goals and different processes. Here, we don't need to seek universal
4040
standards. Instead, we're providing abstractions that are compatible with the
4141
implementations provided by Symfony. This should actually also contribute
42-
positively to the PHP-FIG (from which Symfony is a member), by hinting the group
42+
positively to the PHP-FIG (of which Symfony is a member), by hinting the group
4343
at some abstractions the PHP world might like to take inspiration from.
4444

4545
### Why isn't this package split into several packages?

0 commit comments

Comments
 (0)