Skip to content

Instantly share code, notes, and snippets.

@axel-andrade
Last active November 8, 2021 23:01
Show Gist options
  • Save axel-andrade/2e48067aeba77fbf0e7a32978d4cca95 to your computer and use it in GitHub Desktop.
Save axel-andrade/2e48067aeba77fbf0e7a32978d4cca95 to your computer and use it in GitHub Desktop.
class WaiterEmployee {
public function takePlate(): void {
// method implementation here
}
public function removePlate(): void {
// method implementation here
}
public function takeCheck(): void {
// method implementation here
}
}
class ChefEmployee {
public function cook():void {
// method implementation here
}
}
class BartenderEmployee {
public function prepareDrinks(): void {
// method implementation here
}
}
class SecutiryEmployee {
public function verifySecurityCams(): void {
// method implementation here
}
public function controlCustomerEntrance(): void {
// method implementation here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment