getMethod('register'); $methodBody = file($appServiceProviderFile); $startLine = $reflectionMethod->getStartLine() - 1; $endLine = $reflectionMethod->getEndLine() - 1; array_splice($methodBody, $endLine, 0, $codeToAdd); $modifiedCode = implode('', $methodBody); file_put_contents($appServiceProviderFile, $modifiedCode); } }