OneLogin_Saml2_Settings::getExtLibPath PHP 메소드

getExtLibPath() 공개 메소드

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

Usage Example

예제 #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());
 }