YiiCurl
YiiCurl copied to clipboard
A curl library for Yii
The caching ability doesn't work. It seems that never has been used before. Issue 1) It doesn't pass the data to be cached Issue 2) If fix the above issue,...
has: public function onAfterRequest($event) { $this->raiseEvent('onBeforeRequest',$event); } must: public function onAfterRequest($event) { $this->raiseEvent('onAfterRequest',$event); }
Currently the definition of post & put methond in ACurl is different from the get, delete & head. I consider that this function should have consistent signatures. Get, delete, and...