Extracting just the interface from a PHP application, for code completion

Qtek

New Member
this is my first question.. be gentle :)I am part of the development team for a PHP application (that is I am building the application). We shall call this our 'core code'. We have a separate team who use the core code on a day to day basis, they develop other sites using the core code.Now here's the thing, currently we give our developers access to the core code and all is fine, but in the future we are planning to document the code using PHPdoc, and then we won't need to give them the actual code.The problem then becomes that if our developers don't have the actual code then their IDE's will no longer give them the benefit of code completion.Now, I use Netbeans, and I notice that it stores files such as Standard.php, these simply contain a huge list of functions and their PHP doc above, my question is this:does anybody know of a way I can generate such a set of files? They don't need to contain any code, they should strip out the actual PHP, and just leave behind all the classes and PHPdoc.Any help is greatly appreciated. Thanks.
 
Back
Top