You are here

public static function CaBundle::getBundledCaBundlePath in Smart IP 7.2

Same name and namespace in other branches
  1. 6.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\CaBundle

Code

public static function getBundledCaBundlePath() {
  return __DIR__ . '/../res/cacert.pem';
}