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