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