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