- Working on separation between Annotations and Ulmus

This commit is contained in:
Dave M. 2019-10-04 08:40:14 -04:00
parent b73d046e0a
commit dabfc24cba
2 changed files with 1 additions and 4 deletions

View File

@ -116,7 +116,6 @@ class EntityResolver {
}
}
}
}
throw new \TypeError("Annotation `$className` could not be found within your object `{$this->entityClass}`");

View File

@ -124,7 +124,7 @@ class ObjectReflection {
ReflectionMethod::IS_STATIC
) : array
{
$methods = [];
$list = $methods = [];
if ( $full ) {
if ( $parentClass = $this->classReflection->getParentClass() ) {
@ -134,8 +134,6 @@ class ObjectReflection {
$methods = array_merge($methods, $this->classReflection->getMethods($filter));
$list = [];
foreach($methods as $method) {
$parameters = [];