Skip to content

Instantly share code, notes, and snippets.

@ryaan-anthony
Last active August 29, 2015 14:12
Show Gist options
  • Select an option

  • Save ryaan-anthony/d2858b10b9c4bc31fad3 to your computer and use it in GitHub Desktop.

Select an option

Save ryaan-anthony/d2858b10b9c4bc31fad3 to your computer and use it in GitHub Desktop.
<?php
class Dude implements Woah, Whoa{}
interface Woah
{
const WOAH = true;
}
interface Whoa
{
const WHOA = true;
}
print_r([Dude::WOAH, Dude::WHOA]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment