Skip to content

Instantly share code, notes, and snippets.

@vahid-almasi
Last active December 25, 2018 12:08
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 vahid-almasi/487a16ae68d8847922b2f756e3db469d to your computer and use it in GitHub Desktop.
Save vahid-almasi/487a16ae68d8847922b2f756e3db469d to your computer and use it in GitHub Desktop.
<?
class Circle {
public $radius;
public function __construct($radius) {
$this->radius = $radius;
}
}
class Square {
public $length;
public function __construct($length) {
$this->length = $length;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment