The doc-type $string could not be parsed: Unknown type name "$string" at position 0. (view supported doc-types)
This check marks PHPDoc comments that could not be parsed by our parser. To see
which comment annotations we can parse, please refer to our documentation on
supported doc-types.
Loading history...
14
*/
15
1
public static function getFileName()
16
{
17
1
return __FILE__;
18
}
19
20
/**
21
* Mapping between file extensions and MIME types.
22
*
23
* The array has two main keys, 'types' that maps MIME types to file
24
* extensions, and 'extensions' that map file extensions to MIME types.
25
*
26
* The entire map is created automatically by running
27
* $ fileye-mimemap update [URL] [YAML] [FILE]
28
* on the command line.
29
* The utility application fetches the map from the Apache HTTPD
30
* documentation website, and integrates its definitions with any further
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.