castopod/app/Libraries/Negotiate.php

17 lines
380 B
PHP

<?php
namespace App\Libraries;
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);
}
}