Skip to content

Instantly share code, notes, and snippets.

@svenluijten
Last active November 26, 2015 15:31
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 svenluijten/22fc680ff815ec62958d to your computer and use it in GitHub Desktop.
Save svenluijten/22fc680ff815ec62958d to your computer and use it in GitHub Desktop.
<?php
class Αpp {
public static function fᴏᴏ () { echo "Foo"; }
public static function foo () { echo "Bar"; }
}
class App {
public static function foo () { echo "Baz"; }
public static function fᴏᴏ () { echo "Bang"; }
}
App::foo(); // Baz
Αpp::foo(); // Bar
App::fᴏᴏ(); // Bang
Αpp::fᴏᴏ(); // Foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment