Merge "Replaced all deprecated Linker methods with proper ones in core(1)"
[lhc/web/wiklou.git] / tests / phpunit / includes / password / LayeredParameterizedPasswordTest.php
index 86e8270..773f033 100644 (file)
@@ -2,36 +2,40 @@
 
 class LayeredParameterizedPasswordTest extends PasswordTestCase {
        protected function getTypeConfigs() {
-               return array(
-                       'testLargeLayeredTop' => array(
+               return [
+                       'testLargeLayeredTop' => [
                                'class' => 'LayeredParameterizedPassword',
-                               'types' => array(
+                               'types' => [
                                        'testLargeLayeredBottom',
                                        'testLargeLayeredBottom',
                                        'testLargeLayeredBottom',
                                        'testLargeLayeredBottom',
                                        'testLargeLayeredFinal',
-                               ),
-                       ),
-                       'testLargeLayeredBottom' => array(
+                               ],
+                       ],
+                       'testLargeLayeredBottom' => [
                                'class' => 'Pbkdf2Password',
                                'algo' => 'sha512',
                                'cost' => 1024,
                                'length' => 512,
-                       ),
-                       'testLargeLayeredFinal' => array(
+                       ],
+                       'testLargeLayeredFinal' => [
                                'class' => 'BcryptPassword',
                                'cost' => 5,
-                       )
-               );
+                       ]
+               ];
        }
 
        public static function providePasswordTests() {
-               /** @codingStandardsIgnoreStart Generic.Files.LineLength.TooLong */
-               return array(
-                       array( true, ':testLargeLayeredTop:sha512:1024:512!sha512:1024:512!sha512:1024:512!sha512:1024:512!5!vnRy+2SrSA0fHt3dwhTP5g==!AVnwfZsAQjn+gULv7FSGjA==!xvHUX3WcpkeSn1lvjWcvBg==!It+OC/N9tu+d3ByHhuB0BQ==!Tb.gqUOiD.aWktVwHM.Q/O!7CcyMfXUPky5ptyATJsR2nq3vUqtnBC', 'testPassword123' ),
-               );
-               /** @codingStandardsIgnoreEnd */
+               // @codingStandardsIgnoreStart Generic.Files.LineLength.TooLong
+               return [
+                       [
+                               true,
+                               ':testLargeLayeredTop:sha512:1024:512!sha512:1024:512!sha512:1024:512!sha512:1024:512!5!vnRy+2SrSA0fHt3dwhTP5g==!AVnwfZsAQjn+gULv7FSGjA==!xvHUX3WcpkeSn1lvjWcvBg==!It+OC/N9tu+d3ByHhuB0BQ==!Tb.gqUOiD.aWktVwHM.Q/O!7CcyMfXUPky5ptyATJsR2nq3vUqtnBC',
+                               'testPassword123' 
+                       ],
+               ];
+               // @codingStandardsIgnoreEnd
        }
 
        /**