CURLRequest.php 551 B

1234567891011121314151617181920
  1. <?php
  2. namespace Config;
  3. use CodeIgniter\Config\BaseConfig;
  4. class CURLRequest extends BaseConfig
  5. {
  6. /**
  7. * --------------------------------------------------------------------------
  8. * CURLRequest Share Options
  9. * --------------------------------------------------------------------------
  10. *
  11. * Whether share options between requests or not.
  12. *
  13. * If true, all the options won't be reset between requests.
  14. * It may cause an error request with unnecessary headers.
  15. */
  16. public bool $shareOptions = false;
  17. }