OneLogin_Saml2_Settings::getExtLibPath PHP Method

getExtLibPath() public method

Returns external lib path.
public getExtLibPath ( ) : string
return string The external library folder path
    public function getExtLibPath()
    {
        return $this->_paths['extlib'];
    }

Usage Example

Esempio n. 1
0
 /**
  * Tests getExtLibPath method of the OneLogin_Saml2_Settings
  *
  * @covers OneLogin_Saml2_Settings::getExtLibPath
  */
 public function testGetExtLibPath()
 {
     $settings = new OneLogin_Saml2_Settings();
     $base = $settings->getBasePath();
     $this->assertEquals($base . 'extlib/', $settings->getExtLibPath());
 }