Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove a few more unnecessary @generate-function-entries annotations | Máté Kocsis | 2021-02-09 | 1 | -4/+1 |
| | |||||
* | Add support for generating class entries from stubs | Máté Kocsis | 2021-01-26 | 1 | -2/+45 |
| | | | | | | Closes GH-6289 Co-authored-by: Nikita Popov <nikita.ppv@gmail.com> | ||||
* | Require stubs to declare return types for magic methods when possible | Máté Kocsis | 2020-10-23 | 1 | -3/+7 |
| | | | | Closes GH-6376 | ||||
* | Improve default value handling of Exception constructors | Máté Kocsis | 2020-09-21 | 1 | -3/+3 |
| | | | | Closes GH-6166 | ||||
* | Add support for `@implementation-alias` in stubs | Máté Kocsis | 2020-09-21 | 1 | -11/+11 |
| | | | | Closes GH-6170 | ||||
* | Ensure Exception::getFile/getLine return type is correct | Nikita Popov | 2020-05-28 | 1 | -12/+6 |
| | | | | | | | | | These return an untyped protected property, so we can't rely on the type being correct. Also add return types to the interface -- normally this would be a no-go, but Throwable is a special interface that can only be implemented internally, so we control all implementations. | ||||
* | Generate method entries from stubs for Zend classes | Máté Kocsis | 2020-04-26 | 1 | -14/+76 |
| | | | | Closes GH-5459 | ||||
* | Add missing visibility modifiers in stubs | Máté Kocsis | 2020-04-11 | 1 | -19/+19 |
| | |||||
* | Verify that all stubs have a return type | Nikita Popov | 2020-04-03 | 1 | -0/+1 |
| | |||||
* | Define Stringable with __toString():string method | Nicolas Grekas | 2020-03-02 | 1 | -6/+2 |
| | |||||
* | Add Zend class/interface arginfo stubs | Christoph M. Becker | 2019-10-15 | 1 | -0/+68 |
We also change `Generator::throw()` to expect a `Throwable` in the first place, and we now throw a TypeError instead of returning `false` from `Exception::getTraceAsString()`. |