<?php filemtime(string $filename): int|false
<?php function filemtime(...$arguments) { if ( ! is_mocked('filemtime')) { return \filemtime(...$arguments); } return return_mocked_value('filemtime');
<?php { $location = $this->prefixer->prefixPath($path); error_clear_last(); $lastModified = @filemtime($location); if ($lastModified === false) { throw UnableToRetrieveMetadata::lastModified($path, error_get_last()['message'] ?? '');