You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
name = $name;
}
}
class Cat extends Animal
{
public function meow()
{
return "Cat $this->name is saying meow.";
}
}
$cat = new Cat('Garfield');
echo $cat->meow();
?>