From 765acfb092a4ae1ca53794707c67fe3a8683dbcd Mon Sep 17 00:00:00 2001 From: Michael Aguiar Date: Tue, 5 Mar 2019 14:54:11 -0700 Subject: [PATCH] cleanup --- ISSUE_TEMPLATE.md | 27 --------------------------- src/PWNHealth.php | 2 +- 2 files changed, 1 insertion(+), 28 deletions(-) delete mode 100755 ISSUE_TEMPLATE.md diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md deleted file mode 100755 index 5b48c57..0000000 --- a/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,27 +0,0 @@ - - -## Detailed description - -Provide a detailed description of the change or addition you are proposing. - -Make it clear if the issue is a bug, an enhancement or just a question. - -## Context - -Why is this change important to you? How would you use it? - -How can it benefit other users? - -## Possible implementation - -Not obligatory, but suggest an idea for implementing addition or change. - -## Your environment - -Include as many relevant details about the environment you experienced the bug in and how to reproduce it. - -* Version used (e.g. PHP 5.6, HHVM 3): -* Operating system and version (e.g. Ubuntu 16.04, Windows 7): -* Link to your project: -* ... -* ... diff --git a/src/PWNHealth.php b/src/PWNHealth.php index 83e8a46..a466a85 100644 --- a/src/PWNHealth.php +++ b/src/PWNHealth.php @@ -44,7 +44,7 @@ public function __construct(string $username, string $password, string $env = 's * @param bool $take_tests_same_day * @return \Illuminate\Http\Response */ - public function createOrder(string $first_name, string $last_name, string $dob, string $gender, string $email, string $address, string $city, string $state, int $zip, string $home_phone, array $test_types, array $test_groups, bool $take_tests_same_day=false) + public function createOrder(string $first_name, string $last_name, string $dob, string $gender, string $email, string $address, string $city, string $state, string $zip, string $home_phone, array $test_types, array $test_groups, bool $take_tests_same_day=false) { // Set Headers $headers = ['Content-Type: application/xml'];