add function description

This commit is contained in:
DubbleClick 2025-05-25 10:52:46 +07:00
parent a9d5dcf4a2
commit f83715c370

View File

@ -203,6 +203,15 @@ class Extension
return false; return false;
} }
/**
* @return string
* returns a command line string with all required shared extensions to load
* i.e.; pdo_pgsql would return:
*
* `-d "extension=pgsql" -d "extension=pdo_pgsql"`
* @throws FileSystemException
* @throws WrongUsageException
*/
public function getRequiredSharedExtensions(): string public function getRequiredSharedExtensions(): string
{ {
$loaded = []; $loaded = [];