diff --git a/Annotation/Inject.php b/Annotation/Inject.php index 78e22372..2d4abcc1 100644 --- a/Annotation/Inject.php +++ b/Annotation/Inject.php @@ -46,6 +46,7 @@ use Snowflake\Snowflake; if ($method->isPrivate() || $method->isProtected()) { $this->setter($class, $method, $injectValue); } else { + var_dump($injectValue); $class->{$method->getName()} = $injectValue; } return true;