Diff
checker
Text
Text
Images
Documents
Excel
Folders
Legal
Enterprise
Desktop
Pricing
Sign in
Download Diffchecker Desktop
Compare text
Find the difference between two text files
Tools
History
Real-time editor
Hide unchanged lines
Disable line wrap
Layout
Split
Unified
Diff precision
Smart
Word
Char
Syntax highlighting
Choose syntax
Ignore
Transform text
Go to first change
Edit input
Diffchecker Desktop
The most secure way to run Diffchecker. Get the Diffchecker Desktop app: your diffs never leave your computer!
Get Desktop
Untitled diff
Created
7 years ago
Diff never expires
Clear
Export
Share
Explain
4 removals
Lines
Total
Removed
Characters
Total
Removed
To continue using this feature, upgrade to
Diff
checker
Pro
View Pricing
25 lines
Copy
3 additions
Lines
Total
Added
Characters
Total
Added
To continue using this feature, upgrade to
Diff
checker
Pro
View Pricing
24 lines
Copy
<?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)
*/
*/
Copy
Copied
Copy
Copied
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.
Copy
Copied
Copy
Copied
* @param mixed message
* @param int plural count
* @return string
*/
*/
Copy
Copied
Copy
Copied
function translate($message,
$count = null)
;
function translate($message,
...$parameters): string
;
}
}
Saved diffs
Original text
Open file
<?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); }
Changed text
Open file
<?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; }
Find difference