Diff
checker
テキスト
テキスト
画像
ドキュメント
Excel
フォルダ
Legal
Enterprise
デスクトップ
料金
ログイン
Diffchecker デスクトップのダウンロード
テキスト比較
2 つのテキスト ファイルの違いを見つける
ツール
履歴
ライブエディター
未変更行を折りたたむ
折り返しなし
レイアウト
分割
統合
比較精度
スマート
単語
文字
シンタックスハイライト
構文を選択
無視
テキスト変換
最初の差分へ移動
入力を編集
Diffchecker Desktop
Diffcheckerを実行する最も安全な方法。Diffchecker Desktopアプリを入手:あなたの差分はコンピューターから出ることはありません!
Desktopを入手
Untitled diff
作成日
7 年前
差分は期限切れになりません
クリア
エクスポート
共有
説明
12 削除
行
合計
削除
文字
合計
削除
この機能を引き続き使用するには、アップグレードしてください
Diff
checker
Pro
価格を見る
36 行
すべてコピー
14 追加
行
合計
追加
文字
合計
追加
この機能を引き続き使用するには、アップグレードしてください
Diff
checker
Pro
価格を見る
33 行
すべてコピー
<?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)
*/
*/
コピー
コピー済み
コピー
コピー済み
namespace Nette\
Application
;
declare(strict_types=1);
namespace Nette\
Routing
;
use Nette;
use Nette;
/**
/**
* The bi-directional router.
* The bi-directional router.
*/
*/
コピー
コピー済み
コピー
コピー済み
interface
IRouter
interface
Router // Nette\Application\
IRouter
still exists
{
{
コピー
コピー済み
コピー
コピー済み
/**
only matching route
*/
/**
for back compatibility
*/
const ONE_WAY = 0b0001;
public
const ONE_WAY = 0b0001;
/** @deprecated */
const SECURED = 0b0010;
/**
/**
コピー
コピー済み
コピー
コピー済み
* Maps HTTP request to
a Request object.
* Maps HTTP request to
an array.
* @return Request|null
*/
*/
コピー
コピー済み
コピー
コピー済み
function match(Nette\Http\IRequest $httpRequest)
;
function match(Nette\Http\IRequest $httpRequest)
: ?array
;
/**
/**
コピー
コピー済み
コピー
コピー済み
* Constructs absolute URL from
Request object.
* Constructs absolute URL from
array.
* @return string|null
*/
*/
コピー
コピー済み
コピー
コピー済み
function constructUrl(
Request $appRequest
, Nette\Http\
Url
$refUrl)
;
function constructUrl(
array $params
, Nette\Http\
UrlScript
$refUrl)
: ?string
;
}
}
保存された差分
原文
ファイルを開く
<?php /** * This file is part of the Nette Framework (https://nette.org) * Copyright (c) 2004 David Grudl (https://davidgrudl.com) */ namespace Nette\Application; use Nette; /** * The bi-directional router. */ interface IRouter { /** only matching route */ const ONE_WAY = 0b0001; /** @deprecated */ const SECURED = 0b0010; /** * Maps HTTP request to a Request object. * @return Request|null */ function match(Nette\Http\IRequest $httpRequest); /** * Constructs absolute URL from Request object. * @return string|null */ function constructUrl(Request $appRequest, Nette\Http\Url $refUrl); }
変更されたテキスト
ファイルを開く
<?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\Routing; use Nette; /** * The bi-directional router. */ interface Router // Nette\Application\IRouter still exists { /** for back compatibility */ public const ONE_WAY = 0b0001; /** * Maps HTTP request to an array. */ function match(Nette\Http\IRequest $httpRequest): ?array; /** * Constructs absolute URL from array. */ function constructUrl(array $params, Nette\Http\UrlScript $refUrl): ?string; }
違いを見つける