Skip to content

Commit 07e878a

Browse files
committed
fix(ap-2103): incorrect autoload path
1 parent 9a401d7 commit 07e878a

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

App/Beacon.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
use Evolv\EvolvContext;
88

9-
require __DIR__ . '/../vendor/autoload.php';
109

1110
const ENDPOINT_PATTERN = "/\/(v\d+)\/\w+\/([a-z]+)$/i";
1211

App/EvolvClient.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66

77
use function Evolv\Utils\waitFor;
88
use function Evolv\Utils\emit;
9-
use Evolv\HttpClient;
109

11-
require __DIR__ . '/../vendor/autoload.php';
1210

1311
class EvolvClient
1412
{
@@ -30,7 +28,7 @@ class EvolvClient
3028
* @param bool $autoconfirm
3129
* @return object
3230
*/
33-
public function __construct(string $environment, string $endpoint = 'https://participants.evolv.ai/', bool $autoconfirm = true, $llist = false)
31+
public function __construct(string $environment, string $endpoint = 'https://participants.evolv.ai/', bool $autoconfirm = true)
3432
{
3533
$this->context = new EvolvContext();
3634
$this->store = new EvolvStore($environment, $endpoint);

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"license": "GPL-3.0-only",
1212
"autoload": {
1313
"psr-4": {
14-
"Evolv\\": "./App"
14+
"Evolv\\": "App/"
1515
}
1616
},
1717
"authors": [

0 commit comments

Comments
 (0)