mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-08 01:06:43 +02:00
- move and refactor Image.php from Libraries to Entities folder - update some database field names / types - update composer packages
16 lines
356 B
PHP
16 lines
356 B
PHP
<?php
|
|
|
|
namespace App\Libraries;
|
|
|
|
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);
|
|
}
|
|
}
|