I have next code. Why field userId is invisible in InheritUser?
class User{
private $userId;
function User($userId){
$this->userId = $userId;
}
function getId(){
return $this->userId;
}
}
class InhreritUser extends User{
function someFunc(){
echo $this->userId; // nothing
}
}
someFunc returns nothing:
$inheritUser = new InheritUser(1);
$inheritUser->someFunc();