Skip to content

Instantly share code, notes, and snippets.

@genkovich
Created April 14, 2021 19:27
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 genkovich/1de7fdbe9161071ae832178b3d4f43ea to your computer and use it in GitHub Desktop.
Save genkovich/1de7fdbe9161071ae832178b3d4f43ea to your computer and use it in GitHub Desktop.
<?php
class Foo
{
public function process(int|float $value)
{
// some code
}
}
class Bar extends Foo
{
public function process(int|float|string $value)
{
// some code
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment