php-firebird icon indicating copy to clipboard operation
php-firebird copied to clipboard

Update PHP docs and stubs for ibase_service_attach()

Open mlazdans opened this issue 4 months ago • 2 comments

None of parameters are required for embedded. New signature:

/**
 * Connect to the service manager
 * @link https://php.net/manual/en/function.ibase-service-attach.php
 * @param string $host [optional]
 * @param string $dba_username [optional]
 * @param string $dba_password [optional]
 * @return resource|false
 */
function ibase_service_attach($host = null, $dba_username = null, $dba_password = null) {}

mlazdans avatar Oct 13 '25 18:10 mlazdans

Stubs: https://github.com/JetBrains/phpstorm-stubs (also used by https://github.com/bmewburn/vscode-intelephense) Docs: https://www.php.net/manual/en/function.ibase-service-attach.php

mlazdans avatar Oct 13 '25 18:10 mlazdans

Good hint. Will update the docs.

MartinKoeditz avatar Oct 14 '25 06:10 MartinKoeditz