Diff
checker
Texto
Texto
Imagens
Documentos
Excel
Pastas
Legal
Enterprise
Aplicativo para desktop
Preços
Fazer login
Baixar o Diffchecker Desktop
Comparar texto
Encontre a diferença entre dois arquivos de texto
Ferramentas
Histórico
Editor live
Recolher inalteradas
Sem quebra de linha
Layout
Dividido
Unificado
Nível de detalhe
Inteligente
Palavra
Caractere
Realce de sintaxe
Escolher sintaxe
Ignorar
Transformar texto
Ir à primeira mudança
Editar entrada
Diffchecker Desktop
A maneira mais segura de usar o Diffchecker. Obtenha o aplicativo Diffchecker Desktop: seus diffs nunca saem do seu computador!
Obter Desktop
Untitled diff
Criado
há 7 anos
O diff nunca expira
Limpar
Exportar
Compartilhar
Explicar
4 remoções
Linhas
Total
Removido
Caracteres
Total
Removido
Para continuar usando este recurso, atualize para
Diff
checker
Pro
Ver preços
25 linhas
Copiar tudo
3 adições
Linhas
Total
Adicionado
Caracteres
Total
Adicionado
Para continuar usando este recurso, atualize para
Diff
checker
Pro
Ver preços
24 linhas
Copiar tudo
<?php
<?php
/**
/**
* This file is part of the Nette Framework (https://nette.org)
* This file is part of the Nette Framework (https://nette.org)
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
*/
*/
Copiar
Copiado
Copiar
Copiado
declare(strict_types=1);
namespace Nette\Localization;
namespace Nette\Localization;
/**
/**
* Translator adapter.
* Translator adapter.
*/
*/
interface ITranslator
interface ITranslator
{
{
/**
/**
* Translates the given string.
* Translates the given string.
Copiar
Copiado
Copiar
Copiado
* @param mixed message
* @param int plural count
* @return string
*/
*/
Copiar
Copiado
Copiar
Copiado
function translate($message,
$count = null)
;
function translate($message,
...$parameters): string
;
}
}
Diferenças salvas
Texto original
Abrir arquivo
<?php /** * This file is part of the Nette Framework (https://nette.org) * Copyright (c) 2004 David Grudl (https://davidgrudl.com) */ namespace Nette\Localization; /** * Translator adapter. */ interface ITranslator { /** * Translates the given string. * @param mixed message * @param int plural count * @return string */ function translate($message, $count = null); }
Texto alterado
Abrir arquivo
<?php /** * This file is part of the Nette Framework (https://nette.org) * Copyright (c) 2004 David Grudl (https://davidgrudl.com) */ declare(strict_types=1); namespace Nette\Localization; /** * Translator adapter. */ interface ITranslator { /** * Translates the given string. */ function translate($message, ...$parameters): string; }
Encontrar Diferença