@NotNull
 protected PsiElement[] doCreate(String newName, PsiDirectory directory) {
   PsiFile file =
       SilverStripeTemplatesFactory.createFromTemplate(directory, newName, selectedText);
   PsiElement child = file.getLastChild();
   return child != null ? new PsiElement[] {file, child} : new PsiElement[] {file};
 }