
Lars Gyrup Brink Nielsen - 2013-09-25 10:03:21 -
In reply to message 2 from Protung Dragos
The still problem still persists. If I have
-----
/**
* This is a dummy class for demonstration purposes
*/
class Foo
{
// Body
}
-----
it will not display methods of that class.
However, if I place a _namespace_ or _use_ clause before the DocBlock, the WSDL is generated as supposed to:
-----
namespace Bar;
/**
* This is a dummy class for demonstration purposes
*/
use Bar\Baz;
class Foo
{
// Body
}
-----