Skip to content

Instantly share code, notes, and snippets.

@mkusher
Created January 26, 2017 20:50
Show Gist options
  • Save mkusher/66667736a20cb19cfa4d6476dda64d21 to your computer and use it in GitHub Desktop.
Save mkusher/66667736a20cb19cfa4d6476dda64d21 to your computer and use it in GitHub Desktop.
<?php
namespace EC\Domain;
class Good
{
private $type;
private $price;
private $name;
private $sizes;
}
<?php
namespace EC\Domain;
class GoodItem
{
private $good;
private $size;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment