diff --git a/src/selfie.php b/src/selfie.php new file mode 100644 index 0000000..17d9c3f --- /dev/null +++ b/src/selfie.php @@ -0,0 +1,45 @@ +friends, [new \ReflectionClass($this)]); + } + + /** + * makes you a good selfie mood + */ + function mood() + { + header('Location: https://www.youtube.com/watch?v=kdemFfbS5H0'); + exit; + } + + /** + * add new friends to your selfie + * @param mixed $friends + */ + function friends($friends) + { + $this->add_friend((object)$friends); + } + + private function add_friend($friend) + { + $this->friends[] = new \ReflectionClass($friend); + } + + +}