_dependencyName = $dependencyName; return $this; } public function setInjectWith($injectWith) { $this->_injectWith = $injectWith; return $this; } public function setInjectAs($injectAs) { $this->_injectAs = $injectAs; return $this; } public function setForce($force) { $this->_force = $force; return $this; } public function setNewClass($newClass) { $this->_newClass = $newClass; return $this; } public function dependencyName() { return $this->_dependencyName; } public function injectWith() { return $this->_injectWith; } public function injectAs() { return $this->_injectAs; } public function force() { return $this->_force; } public function newClass() { return $this->_newClass; } }