Skip to content

Commit

Permalink
Improving code style
Browse files Browse the repository at this point in the history
Signed-off-by: Nate Brunette <n@tebru.net>
  • Loading branch information
natebrunette committed Jul 17, 2015
1 parent 7e163a1 commit e4915b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Enum/AesEnum.php
Expand Up @@ -24,7 +24,7 @@ class AesEnum
* @param $method
* @return mixed
*/
static public function getKeySize($method)
public static function getKeySize($method)
{
$keySizes = self::getKeySizes();
if (!in_array($method, array_keys($keySizes), true)) {
Expand All @@ -39,7 +39,7 @@ static public function getKeySize($method)
*
* @return array
*/
static private function getKeySizes()
private static function getKeySizes()
{
return [
self::METHOD_128 => 16,
Expand Down

0 comments on commit e4915b8

Please sign in to comment.