Skip to content

Instantly share code, notes, and snippets.

@sgolemon
Created September 29, 2016 03:37
Show Gist options
  • Save sgolemon/300914ca75ca25a6f35f104d26907c88 to your computer and use it in GitHub Desktop.
Save sgolemon/300914ca75ca25a6f35f104d26907c88 to your computer and use it in GitHub Desktop.
Abstract Constant
<?php
abstract class FooBase {
abstract const BAR;
public static function getBar() {
return static::BAR;
}
}
class Foo extends FooBase {
const BAR = 'baz';
}
var_dump(Foo::getBar());
@unkind
Copy link

unkind commented Sep 29, 2016

NoGodPleaseNo.gif

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment