I am using phpstorm
as IDE. And in my class.php
, I started the class as
class MyClass extends Database{
function sample(){
$this->query();
}
}
the query()
is in the class Database
. But phpstorm shows a warning that
Method 'query' not found in class MyClass. Referenced method is not found in subject class.
But the function is working without any problem.
Is there any problem with this code style? Or Do I need to try a different approach? I searched many websites. But didn't get a proper answer. Please help. Thank you.
Is this working?
The problem is you need everything in classes to be called from a method or outside of the class after the class is instantiated.
you cannot use
$this
outside the method scope in a classEDIT, OP changed question :
works fine for me, no warning