Flickr::__construct PHP Method

__construct() public method

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

Usage Example

コード例 #1
0
ファイル: Collections.php プロジェクト: zeekee/forge
 public function __construct($api_key = null)
 {
     parent::__construct($api_key);
     $this->method = str_replace('\\', '.', strtolower(get_class()));
 }
All Usage Examples Of Flickr::__construct