-
Notifications
You must be signed in to change notification settings - Fork 90
Open
Description
Please add support for PHP splat arguments to function:
From:
* @param string $tables [description]To:
/**
* Performs a READ Lock on given tables
* @param string ...$tables [description]
*/
public function RLock(string ...$tables): void {As an aside and just thinking aloud. Should the 'void' be registered as a '@return void'? I would surmise the non-existence of '@return' would be sufficient to denote voidness. I guess it comes down to personal preference whether implicit or explicit.
TIA!
Reactions are currently unavailable