14 lines
225 B
PHP
14 lines
225 B
PHP
|
<?php
|
||
|
|
||
|
namespace XmlMappingTest;
|
||
|
|
||
|
class User {
|
||
|
private $id;
|
||
|
private $name;
|
||
|
private $address;
|
||
|
private $phonenumbers;
|
||
|
private $groups;
|
||
|
|
||
|
// ... rest of code omitted, irrelevant for the mapping test
|
||
|
}
|