mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
19 lines
406 B
PHP
19 lines
406 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
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);
|
|
}
|
|
}
|