Created
May 15, 2017 19:49
-
-
Save omarkdev/f1508144df464a6959856310a77639b6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?php | |
class Buyer { | |
protected $name; | |
protected $purchases; | |
public function getName() {/**/} | |
public function setName($name) {/**/} | |
public function getPurchases() {/**/} | |
public function setPurchases($purchases) {/**/} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment