Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support a little algebra #13

Closed
muglug opened this issue Dec 10, 2016 · 1 comment
Closed

Support a little algebra #13

muglug opened this issue Dec 10, 2016 · 1 comment

Comments

@muglug
Copy link
Collaborator

muglug commented Dec 10, 2016

Not currently supported by Psalm (or Hack, or Flow)

function do_algebra() : string {
    $a = rand(0, 10) > 5 ? "a" : null;
    $b = rand(0, 10) > 5 ? "b" : null;

    if ($a === null && $b === null) {
        return "all null";
    } elseif ($a === null) {
        return $b;
    } else {
        return $a;
    }
}
@muglug
Copy link
Collaborator Author

muglug commented Dec 10, 2016

Related to #1

@muglug muglug closed this as completed in 05834a0 Dec 28, 2016
muglug added a commit that referenced this issue Dec 28, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant