diff --git a/collections.md b/collections.md index d4164de0e8..8037ab297c 100644 --- a/collections.md +++ b/collections.md @@ -442,7 +442,6 @@ $collection = collect([ ['third' => collect([7, 8, 9])] ]); - $collapsed = $collection->collapseWithKeys(); $collapsed->all(); @@ -3594,7 +3593,6 @@ $collection->all(); // ['Michael', 'Tom'] - $collection = collect(); $collection->whenEmpty(function (Collection $collection) { @@ -3640,7 +3638,6 @@ $collection->all(); // ['michael', 'tom', 'adam'] - $collection = collect(); $collection->whenNotEmpty(function (Collection $collection) { diff --git a/dusk.md b/dusk.md index 004ad6b641..1dbe118503 100644 --- a/dusk.md +++ b/dusk.md @@ -1958,7 +1958,6 @@ Assert that the element matching the given selector is missing the provided attr $browser->assertAttributeMissing($selector, $attribute); ``` - #### assertAttributeContains