X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;ds=sidebyside;f=CRM%2FUtils%2FConsoleTee.php;h=f7adb10695b1c6a6272bfe0fec1d3cc707a91752;hb=a7510f77f36faddd4ab87a7829689daf7d075509;hp=75cb7eaec82df2092869cdc4cd54c5b259badfbc;hpb=060ea8f8e944292abc945b136c66cb7ccabd4fc1;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`. *