*/ class MapsFileFetcher implements FileFetcher { public function fetchFile( string $fileUrl ): string { $result = \Http::get( $fileUrl ); if ( !is_string( $result ) ) { throw new FileFetchingException( $fileUrl ); } return $result; } }