/**
  * @return string[]
  */
 protected function getCallable()
 {
     return [$this->classType->getName(), $this->methodName];
 }
 /**
  * @return bool
  */
 private function hasConstructor()
 {
     return method_exists($this->ClassType->getName(), '__construct');
 }