Hi,<br><br>I was wondering if I'm the only one that has this problem or if this is known. I wouldn't call it a bug<br>because I don't know if this just hasn't been implemented yet.<br><br>Let's say I have two PHP files. One file (
product.php) has a class called Product and that class has<br>various functions, member variables and so on.<br><br>The second file called store.php has these lines.<br><br><?php<br><br>    // Get our products class<br>
    require_once("product.php");<br><br>    $product = new Product();<br><br>?><br><br>Now, if I do $product-> and press Ctrl+Space the public functions and/or variables do not show up. Is this<br>a bug or is this just something that hasn't been implemented.
<br><br>This is really the only thing keeping me from using Geany at the moment since I am working with a very <br>large project and I really don't want to have to switch to other files just to remember the correct name of 
<br>the function (call me lazy if you want).<br><br>With best regards,<br>Erlingur<br>