Fixed SchemaPrinter (broken after the recent merge)

This commit is contained in:
Vladimir Razuvaev 2018-08-22 11:45:54 +07:00
parent 9ae8b9f26e
commit 00caed811b

View File

@ -351,7 +351,7 @@ class SchemaPrinter
$interfaces = $type->getInterfaces(); $interfaces = $type->getInterfaces();
$implementedInterfaces = ! empty($interfaces) ? $implementedInterfaces = ! empty($interfaces) ?
' implements ' . implode( ' implements ' . implode(
'& ', ' & ',
array_map( array_map(
function ($i) { function ($i) {
return $i->name; return $i->name;