Skip to content

Commit

Permalink
Fixed autoloading
Browse files Browse the repository at this point in the history
  • Loading branch information
thelfensdrfer committed Nov 10, 2018
1 parent f3231f4 commit 51d5d6f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
},
"autoload": {
"psr-4": {
"\\": "src/"
"VisualAppeal\\": "src/"
}
},
"require-dev": {
Expand Down
2 changes: 2 additions & 0 deletions src/SslLabs.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

namespace VisualAppeal;

class SslLabs
{
CONST API_URL = "https://api.ssllabs.com/api/v3";
Expand Down
2 changes: 2 additions & 0 deletions tests/SslLabsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

use PHPUnit\Framework\TestCase;

use VisualAppeal\SslLabs;

class SslLabsTest extends TestCase
{
/**
Expand Down

0 comments on commit 51d5d6f

Please sign in to comment.