Skip to content

Commit 51d5d6f

Browse files
committed
Fixed autoloading
1 parent f3231f4 commit 51d5d6f

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
},
2020
"autoload": {
2121
"psr-4": {
22-
"\\": "src/"
22+
"VisualAppeal\\": "src/"
2323
}
2424
},
2525
"require-dev": {

src/SslLabs.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
namespace VisualAppeal;
4+
35
class SslLabs
46
{
57
CONST API_URL = "https://api.ssllabs.com/api/v3";

tests/SslLabsTest.php

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
use PHPUnit\Framework\TestCase;
44

5+
use VisualAppeal\SslLabs;
6+
57
class SslLabsTest extends TestCase
68
{
79
/**

0 commit comments

Comments
 (0)