Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [pdt-dev] Documentation fails when using traits in classes

trait Example {}

class Foo {
use Example;

/**

*/
public function bar() {

}
}

That empty line between "/**" and "*/" happens only, when I am using traits ("use Example;"). But, when I use brackets insteadof ; then it works.


Back to the top