1: <?php
2:
3: namespace ngatngay\http;
4:
5: class curl extends \Curl\Curl {
6: /**
7: * @param string|null $base_url
8: * @param array $options
9: */
10: public function __construct($base_url = null, $options = [])
11: {
12: parent::__construct($base_url, $options);
13: $this->setDefaultJsonDecoder($assoc = true);
14: }
15: }
16: