check if ReflectionClass::getTraits() method exists
This commit is contained in:
parent
8898c91dfc
commit
9797177193
1 changed files with 10 additions and 6 deletions
|
@ -713,9 +713,11 @@ public function __construct()
|
||||||
if (class_exists($metadata->name)) {
|
if (class_exists($metadata->name)) {
|
||||||
$reflClass = new \ReflectionClass($metadata->name);
|
$reflClass = new \ReflectionClass($metadata->name);
|
||||||
|
|
||||||
foreach ($reflClass->getTraits() as $trait) {
|
if (method_exists($reflClass, 'getTraits')) {
|
||||||
if ($trait->hasProperty($property)) {
|
foreach ($reflClass->getTraits() as $trait) {
|
||||||
return true;
|
if ($trait->hasProperty($property)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -747,9 +749,11 @@ public function __construct()
|
||||||
if (class_exists($metadata->name)) {
|
if (class_exists($metadata->name)) {
|
||||||
$reflClass = new \ReflectionClass($metadata->name);
|
$reflClass = new \ReflectionClass($metadata->name);
|
||||||
|
|
||||||
foreach ($reflClass->getTraits() as $trait) {
|
if (method_exists($reflClass, 'getTraits')) {
|
||||||
if ($trait->hasMethod($method)) {
|
foreach ($reflClass->getTraits() as $trait) {
|
||||||
return true;
|
if ($trait->hasMethod($method)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue