How is this working? Shouldn't this throw an error, since I am trying to call a non static method statically? Basically, I've never instantiated an object of type something.
class Something {
public function helloworld() {
echo 'hello world';
}
}
Something::helloworld();
$this = null.