Blame | Last modification | View Log | Download
<?php /** * Represents foo. */ class Foo { } /** * @param mixed $bar */ function &foo($bar) { $baz = function () {}; $a = true ? true : false; $b = "{$a}"; $c = "${b}"; }
<?php
/**
* Represents foo.
*/
class Foo
{
}
* @param mixed $bar
function &foo($bar)
$baz = function () {};
$a = true ? true : false;
$b = "{$a}";
$c = "${b}";