Skip to content

Instantly share code, notes, and snippets.

@aalvesjr
Created December 4, 2012 18:36
Show Gist options
  • Save aalvesjr/4207287 to your computer and use it in GitHub Desktop.
Save aalvesjr/4207287 to your computer and use it in GitHub Desktop.
Kako on PHP
class Empregado {
private $name;
public function __construct($name){
$this->name = $name;
}
public function pe_na_porta(){
echo "Le wild {$this->name} segunda dizendo bye!";
}
}
$k = new Empregado("Kako");
$k->pe_na_porta();
/*
* Isso da erro =/
* new Empregado("Kako")->pe_na_porta();
*
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment