Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

23 lines
569B

  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. * @var bool
  17. */
  18. public $shareOptions = true;
  19. }