Skip to content

Instantly share code, notes, and snippets.

@shushanxingzhe
shushanxingzhe / main-local.php
Created October 24, 2017 02:59 — forked from thiagotalma/main-local.php
PhpStorm Protocol (Win)
<?php
'modules' => [
'debug' => [
'class' => 'yii\debug\Module',
'traceLink' => function ($trace) {
$path = str_replace('/srv/www/myproject/', 'D:\\www\\myproject\\', $trace['file']);
return '<a href="phpstorm://open?url=file://' . $path . '&line=' . $trace['line'] . '">' . $path . ':' . $trace['line'] . '</a>';
},
]
]