X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FUtils%2FConsoleTee.php;h=f7adb10695b1c6a6272bfe0fec1d3cc707a91752;hb=006a3ca7c7658410715c1acb50e48b4e28a4256b;hp=75cb7eaec82df2092869cdc4cd54c5b259badfbc;hpb=7138b10f7e376c96c28b057261394635021cd97b;p=civicrm-core.git diff --git a/CRM/Utils/ConsoleTee.php b/CRM/Utils/ConsoleTee.php index 75cb7eaec8..f7adb10695 100644 --- a/CRM/Utils/ConsoleTee.php +++ b/CRM/Utils/ConsoleTee.php @@ -12,12 +12,12 @@ /** * Capture the output from the console, copy it to a file, and pass it on. * - * @code + * ``` * $tee = CRM_Utils_ConsoleTee::create()->start(); * echo "hello world"; * $tee->stop(); * assertEquals("hello world", file_get_contents($tee->getFileName())); - * @endCode + * ``` * * Loosely speaking, it serves a similar purpose to Unix `tee`. *