Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ceda5d3 + f2666a4 commit 9ab9996Copy full SHA for 9ab9996
1 file changed
UPGRADE.md
@@ -1,5 +1,12 @@
1
# Upgrade to 2.6
2
3
+## Added `Doctrine\ORM\EntityRepository::count()` method
4
+
5
+`Doctrine\ORM\EntityRepository::count()` has been added. This new method has different
6
+signature than `Countable::count()` (required parameter) and therefore are not compatible.
7
+If your repository implemented the `Countable` interface, you will have to use
8
+`$repository->count([])` instead and not implement `Countable` interface anymore.
9
10
## Minor BC BREAK: `Doctrine\ORM\Tools\Console\ConsoleRunner` is now final
11
12
Since it's just an utilitarian class and should not be inherited.
0 commit comments