RosettaCodeData/Task/Inheritance-Single/PHP/inheritance-single.php
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

19 lines
269 B
PHP

class Animal {
// functions go here...
}
class Dog extends Animal {
// functions go here...
}
class Cat extends Animal {
// functions go here...
}
class Lab extends Dog {
// functions go here...
}
class Collie extends Dog {
// functions go here...
}