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:
Nikita Popov 2021-01-18 16:14:31 +01:00
parent d340be0d32
commit a9efcb1561
9 changed files with 19 additions and 7 deletions

View file

@ -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 */