From e4915b8eaab047659ba5c0d79b35c14da542184f Mon Sep 17 00:00:00 2001 From: Nate Brunette Date: Fri, 17 Jul 2015 18:56:42 -0500 Subject: [PATCH] Improving code style Signed-off-by: Nate Brunette --- src/Enum/AesEnum.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Enum/AesEnum.php b/src/Enum/AesEnum.php index 7708500..1fe4912 100644 --- a/src/Enum/AesEnum.php +++ b/src/Enum/AesEnum.php @@ -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)) { @@ -39,7 +39,7 @@ static public function getKeySize($method) * * @return array */ - static private function getKeySizes() + private static function getKeySizes() { return [ self::METHOD_128 => 16,