if ('' !==
$classDescription =
$this->
getClassDescription((string) $definition->
getClass())) { $output .= '- Description: `'.
$classDescription.'`'."\n";
} $output .= '- Class: `'.
$definition->
getClass().'`'
."\n".'- Public: '.
($definition->
isPublic() && !
$definition->
isPrivate() ? 'yes' : 'no'
) ."\n".'- Synthetic: '.
($definition->
isSynthetic() ? 'yes' : 'no'
) ."\n".'- Lazy: '.
($definition->
isLazy() ? 'yes' : 'no'
) ."\n".'- Shared: '.
($definition->
isShared() ? 'yes' : 'no'
) ."\n".'- Abstract: '.
($definition->
isAbstract() ? 'yes' : 'no'
) ."\n".'- Autowired: '.
($definition->
isAutowired() ? 'yes' : 'no'
) ."\n".'- Autoconfigured: '.
($definition->
isAutoconfigured() ? 'yes' : 'no'
) ;
if ($definition->
isDeprecated()) { $output .= "\n".'- Deprecated: yes';
$output .= "\n".'- Deprecation message: '.
$definition->
getDeprecation($options['id'
])['message'
];
} else { $output .= "\n".'- Deprecated: no';
} if (isset($options['show_arguments'
]) &&
$options['show_arguments'
]) {