class_name = $class_name; $this->dependencies = $dependencies; $this->scopes = $scopes; $this->method = $method; } /** * @return array */ public function get_dependencies() { return $this->dependencies; } /** * @return string */ public function get_class_name() { return $this->class_name; } /** * @return string */ public function get_method() { return $this->method; } /** * @return array */ public function get_scopes() { return $this->scopes; } }