Last active
December 25, 2018 12:08
-
-
Save vahid-almasi/487a16ae68d8847922b2f756e3db469d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
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