Skip to content

Commit

Permalink
More logical class inheritance
Browse files Browse the repository at this point in the history
  • Loading branch information
mmeyer2k committed Jun 30, 2015
1 parent 3e5574a commit 383d4ba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Hash.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* @license http://opensource.org/licenses/MIT The MIT License (MIT)
* @link https://github.com/mmeyer2k/dcrypt
*/
class Hash extends Str
class Hash extends Support
{

const algo = 'sha256';
Expand Down
2 changes: 1 addition & 1 deletion src/Str.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* @link https://github.com/symfony/Security/blob/master/Core/Util/StringUtils.php
* @link https://php.net/manual/en/mbstring.overload.php
*/
class Str extends Support
class Str
{

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Support.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Dcrypt;

class Support
class Support extends Str
{

/**
Expand Down

0 comments on commit 383d4ba

Please sign in to comment.