-
Notifications
You must be signed in to change notification settings - Fork 28
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
Type api/* #1407
base: master
Are you sure you want to change the base?
Type api/* #1407
Conversation
3b03367
to
40913af
Compare
@jchaffraix - Can you please break out the TrieNode changes into a separate PR we can get in first? This change makes sense but I'd like to review and merge it in separately than the typing changes. |
I have split the changes in api/ApiRouter.inc into #1411. This may be a bit more than what you asked as it includes some of the added typing in the class... Those seemed small enough they shouldn't impact the review, however let me know if you prefer that we break this further. |
The first step was to rework the ApiRouter to clearly state that it was using a trie and add an appropriate TrieNode. This helped clean up the types a bit. Typed the handlers/validators though their return value is anything that `json_encode` can consume (so anything effectively :-)).
40913af
to
94f29d0
Compare
@jchaffraix - I just rebased this to resolve the merge conflict from #1411 |
The first step was to rework the ApiRouter to
clearly state that it was using a trie and add
an appropriate TrieNode. This helped clean up
the types a bit.
Typed the handlers/validators though their
return value is anything that
json_encode
can consume (so anything effectively :-)).