- Working on separation between Annotations and Ulmus
This commit is contained in:
parent
b73d046e0a
commit
dabfc24cba
|
@ -116,7 +116,6 @@ class EntityResolver {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new \TypeError("Annotation `$className` could not be found within your object `{$this->entityClass}`");
|
throw new \TypeError("Annotation `$className` could not be found within your object `{$this->entityClass}`");
|
||||||
|
|
|
@ -124,7 +124,7 @@ class ObjectReflection {
|
||||||
ReflectionMethod::IS_STATIC
|
ReflectionMethod::IS_STATIC
|
||||||
) : array
|
) : array
|
||||||
{
|
{
|
||||||
$methods = [];
|
$list = $methods = [];
|
||||||
|
|
||||||
if ( $full ) {
|
if ( $full ) {
|
||||||
if ( $parentClass = $this->classReflection->getParentClass() ) {
|
if ( $parentClass = $this->classReflection->getParentClass() ) {
|
||||||
|
@ -134,8 +134,6 @@ class ObjectReflection {
|
||||||
|
|
||||||
$methods = array_merge($methods, $this->classReflection->getMethods($filter));
|
$methods = array_merge($methods, $this->classReflection->getMethods($filter));
|
||||||
|
|
||||||
$list = [];
|
|
||||||
|
|
||||||
foreach($methods as $method) {
|
foreach($methods as $method) {
|
||||||
$parameters = [];
|
$parameters = [];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue