public static function CaBundle::getBundledCaBundlePath in Smart IP 6.2
Same name and namespace in other branches
- 7.2 includes/vendor/composer/ca-bundle/src/CaBundle.php \Composer\CaBundle\CaBundle::getBundledCaBundlePath()
Returns the path to the bundled CA file
In case you don't want to trust the user or the system, you can use this directly
Return value
string path to a CA bundle file
1 call to CaBundle::getBundledCaBundlePath()
- CaBundle::getSystemCaRootBundlePath in includes/
vendor/ composer/ ca-bundle/ src/ CaBundle.php - Returns the system CA bundle path, or a path to the bundled one
File
- includes/
vendor/ composer/ ca-bundle/ src/ CaBundle.php, line 131
Class
- CaBundle
- @author Chris Smith <chris@cs278.org> @author Jordi Boggiano <j.boggiano@seld.be>
Namespace
Composer\CaBundleCode
public static function getBundledCaBundlePath() {
return __DIR__ . '/../res/cacert.pem';
}