Skip to content

Commit

Permalink
Remove Docblocks for classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlotta Jung committed Oct 11, 2017
1 parent 2f587aa commit a8acc31
Show file tree
Hide file tree
Showing 11 changed files with 77 additions and 96 deletions.
133 changes: 77 additions & 56 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ TODO: Write usage instructions
4. Push to the branch: `git push origin my-new-feature`
5. Submit a pull request :D

## History

TODO: Write history

## Credits

[Dylan DPC](https://github.com/Dylan-DPC)
Expand Down
4 changes: 0 additions & 4 deletions src/AuthValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@

use Illuminate\Database\Eloquent\Model;

/**
* Class AuthValidator
* @package Dpc\HashVerifier
*/
class AuthValidator implements AuthValidatorContract
{
protected $generator;
Expand Down
4 changes: 0 additions & 4 deletions src/AuthValidatorContract.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@

use Illuminate\Database\Eloquent\Model;

/**
* Interface AuthValidatorContract
* @package Dpc\HashVerifier
*/
interface AuthValidatorContract
{

Expand Down
4 changes: 0 additions & 4 deletions src/AuthValidatorServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@

use Illuminate\Support\ServiceProvider;

/**
* Class AuthValidatorServiceProvider
* @package Dpc\HashVerifier
*/
class AuthValidatorServiceProvider extends ServiceProvider
{
/**
Expand Down
4 changes: 0 additions & 4 deletions src/Exceptions/HashFailedException.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@

namespace Dpc\HashVerifier\Exceptions;

/**
* Class HashFailedException
* @package Dpc\HashVerifier\Exceptions
*/
class HashFailedException extends \Exception
{

Expand Down
4 changes: 0 additions & 4 deletions src/Exceptions/NonceFailedException.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@

namespace Dpc\HashVerifier\Exceptions;

/**
* Class NonceFailedException
* @package Dpc\HashVerifier\Exceptions
*/
class NonceFailedException extends \Exception
{

Expand Down
4 changes: 0 additions & 4 deletions src/HMacValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@

namespace Dpc\HashVerifier;

/**
* Class HMacValidator
* @package Dpc\HashVerifier
*/
class HMacValidator implements HMacValidatorContract
{

Expand Down
4 changes: 0 additions & 4 deletions src/HMacValidatorContract.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@

namespace Dpc\HashVerifier;

/**
* Interface HMacValidatorContract
* @package Dpc\HashVerifier
*/
interface HMacValidatorContract
{
/**
Expand Down
4 changes: 0 additions & 4 deletions src/NonceContract.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@

use Illuminate\Database\Eloquent\Model;

/**
* Interface NonceContract
* @package Dpc\HashVerifier
*/
interface NonceContract
{
/**
Expand Down
4 changes: 0 additions & 4 deletions src/NonceGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@
use Illuminate\Database\Eloquent\Model;
use function Sodium\randombytes_buf;

/**
* Class NonceGenerator
* @package Dpc\HashVerifier
*/
class NonceGenerator implements NonceContract
{
/**
Expand Down

0 comments on commit a8acc31

Please sign in to comment.