Wahrscheinlich eine dumme Frage, aber meine IDE (PHPStorm) und ich haben eine kleine Meinungsverschiedenheit...
class Item_Backpack {
public function Empty() {
// dump contents
}
public function insertThing($thing) {
// insert thing into backpack
}
}
class Student {
private $_Backpack; // is a class, can contain other objects
function __construct() {
$this->_Backpack = new Item_Backpack;
}
public function emptyBackpack() {
$this->_Backpack->Empty(); // IDE says method undefined
// and cannot give method/property hints
// for this object :-3
}
}
Le site Item_Backpack
Klasse hat die Methode public function Empty()
die ... leert den Rucksack!
Ist meine Syntax hier korrekt?