Improve options type declarations and add andThen method#398
Merged
veewee merged 1 commit intophp-standard-library:nextfrom Jan 24, 2023
Merged
Improve options type declarations and add andThen method#398veewee merged 1 commit intophp-standard-library:nextfrom
veewee merged 1 commit intophp-standard-library:nextfrom
Conversation
Pull Request Test Coverage Report for Build 3995385287
💛 - Coveralls |
renovate bot
referenced
this pull request
in ben-challis/sql-migrations
Jan 26, 2023
[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [azjezz/psl](https://togithub.com/azjezz/psl) | require | minor | `2.3.1` -> `2.4.1` | --- ### ⚠ Dependency Lookup Warnings ⚠ Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>azjezz/psl</summary> ### [`v2.4.1`](https://togithub.com/azjezz/psl/releases/tag/2.4.1): Lenalee - 2.4.1 [Compare Source](https://togithub.com/azjezz/psl/compare/2.4.0...2.4.1) #### What's Changed - undeprecate `positive_int()` by [@​dragosprotung](https://togithub.com/dragosprotung) in [https://github.com/azjezz/psl/pull/400](https://togithub.com/azjezz/psl/pull/400) **Full Changelog**: php-standard-library/php-standard-library@2.4.0...2.4.1 ### [`v2.4.0`](https://togithub.com/azjezz/psl/releases/tag/2.4.0): Lenalee - 2.4.0 [Compare Source](https://togithub.com/azjezz/psl/compare/2.3.1...2.4.0) #### What's Changed ##### Features - Add range function by [@​azjezz](https://togithub.com/azjezz) in [https://github.com/azjezz/psl/pull/385](https://togithub.com/azjezz/psl/pull/385) - Add nonnull type by [@​azjezz](https://togithub.com/azjezz) in [https://github.com/azjezz/psl/pull/392](https://togithub.com/azjezz/psl/pull/392) - Add uint type by [@​azjezz](https://togithub.com/azjezz) in [https://github.com/azjezz/psl/pull/393](https://togithub.com/azjezz/psl/pull/393) - Add signed integer types by [@​azjezz](https://togithub.com/azjezz) in [https://github.com/azjezz/psl/pull/394](https://togithub.com/azjezz/psl/pull/394) - Add unsigned integer types by [@​KennedyTedesco](https://togithub.com/KennedyTedesco) in [https://github.com/azjezz/psl/pull/395](https://togithub.com/azjezz/psl/pull/395) - Add f32 and f64 types by [@​KennedyTedesco](https://togithub.com/KennedyTedesco) in [https://github.com/azjezz/psl/pull/396](https://togithub.com/azjezz/psl/pull/396) ##### fixes, and improvements - Return might be non-empty-list/non-empty-array for map functions by [@​dragosprotung](https://togithub.com/dragosprotung) in [https://github.com/azjezz/psl/pull/384](https://togithub.com/azjezz/psl/pull/384) - Add Async documentation by [@​azjezz](https://togithub.com/azjezz) in [https://github.com/azjezz/psl/pull/386](https://togithub.com/azjezz/psl/pull/386) - remove float ranges by [@​azjezz](https://togithub.com/azjezz) in [https://github.com/azjezz/psl/pull/391](https://togithub.com/azjezz/psl/pull/391) - update changelog by [@​KennedyTedesco](https://togithub.com/KennedyTedesco) in [https://github.com/azjezz/psl/pull/397](https://togithub.com/azjezz/psl/pull/397) - Improve options type declarations and add andThen method by [@​veewee](https://togithub.com/veewee) in [https://github.com/azjezz/psl/pull/398](https://togithub.com/azjezz/psl/pull/398) #### New Contributors - [@​KennedyTedesco](https://togithub.com/KennedyTedesco) made their first contribution in [https://github.com/azjezz/psl/pull/395](https://togithub.com/azjezz/psl/pull/395) **Full Changelog**: php-standard-library/php-standard-library@2.3.1...2.4.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/ben-challis/sql-migrations). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xMTEuMSIsInVwZGF0ZWRJblZlciI6IjM0LjExMS4xIn0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Partially fixes #379:
Improves types of
unwrapOrandunwrapOrElse:Option::<T>::unwrapOr::<O>(O $other): T|O