use require instead of import

This commit is contained in:
Jonas Leder 2022-03-08 15:11:10 +01:00
parent e305c030e6
commit 97158b5f0c
No known key found for this signature in database
GPG key ID: 8A53DD45A7D7B44B
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
use GuzzleHttp\Client;
function mailAddress($hCaptchaResponse) {
include("./lib/config.php");
require "./lib/config.php";
$data = array(
'secret' => $secretkey,
'response' => $hCaptchaResponse

View file

@ -1,7 +1,7 @@
<?php
function getSkills() {
include("./lib/config.php");
require "./lib/config.php";
$s3Client = new Aws\S3\S3Client([
'version' => 'latest',
'region' => 'us-east-1',