mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 00:35:47 +00:00
15 lines
298 B
PHP
15 lines
298 B
PHP
![]() |
<?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);
|
||
|
}
|
||
|
}
|