mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
gen_stub: Also verify implementation-alias
This makes --verify also check @implementation-alias. Failures are ignored using @no-verify instead. Some mistakes have been made that would have been caught by this... Closes GH-6615.
This commit is contained in:
parent
d340be0d32
commit
a9efcb1561
9 changed files with 19 additions and 7 deletions
|
@ -4,7 +4,10 @@
|
|||
|
||||
class SQLite3
|
||||
{
|
||||
/** @implementation-alias SQLite3::open */
|
||||
/**
|
||||
* @implementation-alias SQLite3::open
|
||||
* @no-verify SQLite3::open should really be static
|
||||
*/
|
||||
public function __construct(string $filename, int $flags = SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE, string $encryptionKey = "") {}
|
||||
|
||||
/** @return void */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue