Skip to content
This repository has been archived by the owner on Dec 30, 2020. It is now read-only.

Commit

Permalink
Merge pull request #84 from Spomky-Labs/analysis-8KZRNV
Browse files Browse the repository at this point in the history
Applied fixes from StyleCI
  • Loading branch information
Spomky committed Feb 1, 2016
2 parents ba0c658 + cf78c01 commit 478279f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/Algorithm/KeyEncryption/PBES2AESKW.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ abstract class PBES2AESKW implements KeyEncryptionInterface
* @var int
*/
private $salt_size;

/**
* @var int
*/
private $nb_count;

/**
* @param int $salt_size
* @param int $nb_count
Expand All @@ -39,7 +39,7 @@ public function __construct($salt_size = 64, $nb_count = 4096)
$this->salt_size = $salt_size;
$this->nb_count = $nb_count;
}

/**
* {@inheritdoc}
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Util/StringUtil.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static function generateRandomBytes($size)
}
throw new \RuntimeException('Unable to create random bytes.');
}

/**
* @param string $string
*
Expand Down

0 comments on commit 478279f

Please sign in to comment.