Skip to content

Instantly share code, notes, and snippets.

@ABM-Dan
Created February 11, 2016 21:15
Show Gist options
  • Save ABM-Dan/666ada330fcb7ba2cefb to your computer and use it in GitHub Desktop.
Save ABM-Dan/666ada330fcb7ba2cefb to your computer and use it in GitHub Desktop.
<?php
class Parent{
private static $attribute;
public getAttribute(){
return self::$attribute;
}
}
class Child extends Parent{
private static $attribute = 'not null';
}
$obj = new Child();
echo $obj->getAttribute(); // I'd like to get not null here.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment