- Edited
unused two elements classname and function operation Phpstorm return this error
it doesn't return any echo
I don't know if outside or inside the class if I pass one param to the function operation
I don't know how to use classname i suppose is outside from the class classname
class classname{
public $attribute;
function operation($param){
$this->attribute = $param;
echo $this->attribute;
}
}
i don't know if it is correct if have this code outside the class classname
$a = new classname;
$a->operation(12);