Skip to content

Instantly share code, notes, and snippets.

View arvenil's full-sized avatar
💻
Looking for project

Kamil Dziedzic arvenil

💻
Looking for project
View GitHub Profile
@jaredwilli
jaredwilli / gist:752701
Created December 23, 2010 07:32
Constructor Overloading using the Php5 __call() method
<?php
/**
* @constructor overloading using the __call() function
*
*/
class Player {
private $name;
private $surname;
private $country;