Skip to content

Instantly share code, notes, and snippets.

@EricMcWinNer
Created July 26, 2021 00:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EricMcWinNer/bf824a49d5c2fdff76348be46464977f to your computer and use it in GitHub Desktop.
Save EricMcWinNer/bf824a49d5c2fdff76348be46464977f to your computer and use it in GitHub Desktop.
<?php
class Animal {
public static function makeSound(){
echo "Animal";
}
public static function vocalize() {
echo self::makeSound();
}
}
Animal::vocalize(); // Animal
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment