mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
21 lines
246 B
PHP
21 lines
246 B
PHP
--TEST--
|
|
GH-17039 (PHP 8.4: Incorrect MIME content type)
|
|
--EXTENSIONS--
|
|
fileinfo
|
|
--FILE--
|
|
<?php
|
|
|
|
class Foo
|
|
{
|
|
public function bar()
|
|
{
|
|
$this->baz(function () {});
|
|
}
|
|
}
|
|
|
|
echo mime_content_type(__FILE__);
|
|
|
|
?>
|
|
--EXPECT--
|
|
text/x-php
|