Skip to content

Instantly share code, notes, and snippets.

@kanian
Created March 19, 2019 19:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kanian/eab9c52a7148e37cf6ab921667f25114 to your computer and use it in GitHub Desktop.
Save kanian/eab9c52a7148e37cf6ab921667f25114 to your computer and use it in GitHub Desktop.
A dummy class
<?php
class Yo{
public $yo;
public function __construct(){
echo $this->yo;
}
public function hein(string $what){
$this->yo = $what;
}
public function what(){
echo $this->yo;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment