From 161d86509b4cf66bc7b7e0e20b334fb70a9d7893 Mon Sep 17 00:00:00 2001 From: thejmitchener Date: Fri, 20 Dec 2024 17:42:42 -0500 Subject: [PATCH] Renamed bug.yml and config.yml files in the .github/ISSUE_TEMPLATE directory to issue_templates directory. Added new lines to the AppInit.php file in the Fuelviews\AppInit namespace. The changes were made to improve file organization and add functionality to the AppInit class. --- .github/issue_template/bug.yml | 66 ------------------- .../bug.yml | 0 .../config.yml | 0 src/AppInit.php | 4 +- 4 files changed, 3 insertions(+), 67 deletions(-) delete mode 100644 .github/issue_template/bug.yml rename .github/{ISSUE_TEMPLATE => issue_templates}/bug.yml (100%) rename .github/{ISSUE_TEMPLATE => issue_templates}/config.yml (100%) diff --git a/.github/issue_template/bug.yml b/.github/issue_template/bug.yml deleted file mode 100644 index fe4cfe6..0000000 --- a/.github/issue_template/bug.yml +++ /dev/null @@ -1,66 +0,0 @@ -name: Bug Report -description: Report an Issue or Bug with the Package -title: "[Bug]: " -labels: ["bug"] -body: - - type: markdown - attributes: - value: | - We're sorry to hear you have a problem. Can you help us solve it by providing the following details. - - type: textarea - id: what-happened - attributes: - label: What happened? - description: What did you expect to happen? - placeholder: I cannot currently do X thing because when I do, it breaks X thing. - validations: - required: true - - type: textarea - id: how-to-reproduce - attributes: - label: How to reproduce the bug - description: How did this occur, please add any config values used and provide a set of reliable steps if possible. - placeholder: When I do X I see Y. - validations: - required: true - - type: input - id: package-version - attributes: - label: Package Version - description: What version of our Package are you running? Please be as specific as possible - placeholder: 2.0.0 - validations: - required: true - - type: input - id: php-version - attributes: - label: PHP Version - description: What version of PHP are you running? Please be as specific as possible - placeholder: 8.2.0 - validations: - required: true - - type: input - id: laravel-version - attributes: - label: Laravel Version - description: What version of Laravel are you running? Please be as specific as possible - placeholder: 9.0.0 - validations: - required: true - - type: dropdown - id: operating-systems - attributes: - label: Which operating systems does with happen with? - description: You may select more than one. - multiple: true - options: - - macOS - - Windows - - Linux - - type: textarea - id: notes - attributes: - label: Notes - description: Use this field to provide any other notes that you feel might be relevant to the issue. - validations: - required: false diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/issue_templates/bug.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/bug.yml rename to .github/issue_templates/bug.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/issue_templates/config.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/config.yml rename to .github/issue_templates/config.yml diff --git a/src/AppInit.php b/src/AppInit.php index c4632e4..9c34007 100755 --- a/src/AppInit.php +++ b/src/AppInit.php @@ -2,4 +2,6 @@ namespace Fuelviews\AppInit; -class AppInit {} +class AppInit { + +}