Flickr::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( $config )
    public function __construct($config)
    {
        parent::__construct($config);
    }

Usage Example

예제 #1
0
 public function __construct($api_key = null)
 {
     parent::__construct($api_key);
     $this->method = str_replace('\\', '.', strtolower(get_class()));
 }
All Usage Examples Of Flickr::__construct