|
@@ 192-195 (lines=4) @@
|
| 189 |
|
if ($root_type->has_property($property->name)) |
| 190 |
|
{ |
| 191 |
|
$root_property = $root_type->get_property($property->name); |
| 192 |
|
if ($root_property->field !== $property->field) |
| 193 |
|
{ |
| 194 |
|
connection::log()->error('Naming collision in ' . $root_type->name . ': Field ' . $type->name . '.' . $property->name . ' cannot use column ' . $property->field); |
| 195 |
|
} |
| 196 |
|
if ($root_property->type !== $property->type) |
| 197 |
|
{ |
| 198 |
|
connection::log()->warn('Naming collision in ' . $root_type->name . ': Field ' . $type->name . '.' . $property->name . ' cannot use type ' . $property->type); |
|
@@ 196-199 (lines=4) @@
|
| 193 |
|
{ |
| 194 |
|
connection::log()->error('Naming collision in ' . $root_type->name . ': Field ' . $type->name . '.' . $property->name . ' cannot use column ' . $property->field); |
| 195 |
|
} |
| 196 |
|
if ($root_property->type !== $property->type) |
| 197 |
|
{ |
| 198 |
|
connection::log()->warn('Naming collision in ' . $root_type->name . ': Field ' . $type->name . '.' . $property->name . ' cannot use type ' . $property->type); |
| 199 |
|
} |
| 200 |
|
continue; |
| 201 |
|
} |
| 202 |
|
$root_type->add_property($property); |