From e32a3182de9436e3a8ec2700ec003f2029060894 Mon Sep 17 00:00:00 2001 From: George Steel Date: Fri, 15 Sep 2023 12:07:39 +0100 Subject: [PATCH] Titles should be in title-case MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Frank Brückner Signed-off-by: George Steel --- docs/book/v4/migration/v3-to-v4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/book/v4/migration/v3-to-v4.md b/docs/book/v4/migration/v3-to-v4.md index 88708673..14eb0761 100644 --- a/docs/book/v4/migration/v3-to-v4.md +++ b/docs/book/v4/migration/v3-to-v4.md @@ -10,7 +10,7 @@ All classes have been updated to make use of parameter and return types. In gene The addition of property, parameter and return types will cause fatal errors for extending classes that re-define those properties or override changed methods. If you have extended from any classes in laminas-stdlib, you should check that property types and method signatures are compatible and update them if they are not aligned. -### PriorityQueue::toArray() now returns data in order of priority +### `PriorityQueue::toArray()` Now Returns Data in Order of Priority In previous versions, `PriorityQueue::toArray()` returned data in insertion order. This method now returns data in priority order making it effectively the same as `iterator_to_array($queue)`, with the exception that you can pass extraction flags to `PriorityQueue::toArray()`.