Flickr::__construct PHP Method

__construct() public method

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

Usage Example

Exemplo n.º 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