castopod/app/Libraries/Negotiate.php
Yassine Doghri 231d578d64
refactor: add phpstan and update code to adhere to level 5
- move and refactor Image.php from Libraries to Entities folder
- update some database field names
/ types
- update composer packages
2021-05-12 14:00:25 +00:00

17 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);
}
}