Skip to content

Commit

Permalink
Fix namespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
JASchilz committed Feb 23, 2016
1 parent a7b258e commit 83fc5ef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Use
Using this package requires only two lines:
```
// Import the CSRF class
use Athens\CSRF;
use Athens\CSRF\CSRF;
// Intialize
CSRF::init();
Expand Down
2 changes: 1 addition & 1 deletion src/CSRF.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Athens;
namespace Athens\CSRF;

/**
* Class CSRF provides methods for protection against CSRF attacks.
Expand Down
2 changes: 1 addition & 1 deletion test/CSRFTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use PHPUnit_Framework_TestCase;

use Athens\CSRF;
use Athens\CSRF\CSRF;

/**
* Class CSRFTest
Expand Down

0 comments on commit 83fc5ef

Please sign in to comment.