Skip to content

Instantly share code, notes, and snippets.

@asaokamei
Created November 2, 2016 04:41
Show Gist options
  • Save asaokamei/c1df9821ae8d5babaf9efaf255a284e6 to your computer and use it in GitHub Desktop.
Save asaokamei/c1df9821ae8d5babaf9efaf255a284e6 to your computer and use it in GitHub Desktop.
<?php
class Void
{
public function __set() {
}
public function __get() {
return $this;
}
public function __call() {
return $this;
}
public function __toString() {
return '';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment