| 1 | <?php | ||
| 27 | class RelatedEntity | ||
| 28 | { | ||
| 29 | /** | ||
| 30 | * @var string | ||
| 31 | */ | ||
| 32 | public $opis; | ||
| 33 | /** | ||
| 34 | * ID podmiotu KRS | ||
| 35 | * | ||
| 36 | * @var int | ||
| 37 | */ | ||
| 38 | public $podmiot_id; | ||
| 39 | |||
| 40 | /** | ||
| 41 | * RelatedEntity constructor. | ||
| 42 | * | ||
| 43 | * @param string $str | ||
| 44 | * | ||
| 45 | * @throws \mrcnpdlk\MojePanstwo\Exception | ||
| 46 | */ | ||
| 47 | 1 | public function __construct(string $str) | |
| 70 | } | ||
| 71 |