Skip to content

Instantly share code, notes, and snippets.

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