Last active
August 23, 2019 20:42
-
-
Save chrisguitarguy/88cf096adadb470aae066fcca2d17d6f 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 ClientDto | |
| { | |
| public $id; | |
| public $name; | |
| public $site_url; | |
| } | |
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 Client | |
| { | |
| private $id; | |
| private $name; | |
| private $siteUrl; | |
| // constructor, getters, etc | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment