Skip to content
Snippets Groups Projects
Negotiate.php 406 B
Newer Older
  • Learn to ignore specific revisions
  • use CodeIgniter\HTTP\Negotiate as CodeIgniterHTTPNegotiate;
    
    class Negotiate extends CodeIgniterHTTPNegotiate
    
        /**
         * @param mixed[] $acceptable
         */
    
        public function callMatch(array $acceptable, string $supported, bool $enforceTypes = false): bool
        {
    
            return $this->match($acceptable, $supported, $enforceTypes);
        }
    }