https://github.com/hamuhamu/ValueObject
ValueObject pattern
https://github.com/hamuhamu/ValueObject
Last synced: 3 months ago
JSON representation
ValueObject pattern
- Host: GitHub
- URL: https://github.com/hamuhamu/ValueObject
- Owner: hamuhamu
- Created: 2015-08-31T17:03:37.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-31T17:07:39.000Z (over 9 years ago)
- Last Synced: 2024-08-04T09:02:43.095Z (7 months ago)
- Language: PHP
- Size: 137 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ValueObject
ValueObject pattern### Usage
```php
100, 'weight' => 60,]);
// output:100
echo $human->height;
// output:Exception: undefined property hoge
echo $human->hoge;```