/** * @param string $class * @param string $methodName * @param string $method * @return string */ public function insertAfterMethod($class, $methodName, $method) { $line = $this->analyser->getEndLineOfNamedMethod($class, $methodName); return $this->insertStringAfterLine($class, $method, $line); }