From 0fdcc7188705333c282da948910c09bdd9c0d21c Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Thu, 26 May 2016 20:57:50 +0200 Subject: [PATCH] CS (alignment) --- ...pleQueryArrayHydrationPerformanceBench.php | 24 +++++++++---------- ...leQueryScalarHydrationPerformanceBench.php | 24 +++++++++---------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/tests/Doctrine/Performance/Hydration/SimpleQueryArrayHydrationPerformanceBench.php b/tests/Doctrine/Performance/Hydration/SimpleQueryArrayHydrationPerformanceBench.php index 9ff8a1f9b..4e19ad8b3 100644 --- a/tests/Doctrine/Performance/Hydration/SimpleQueryArrayHydrationPerformanceBench.php +++ b/tests/Doctrine/Performance/Hydration/SimpleQueryArrayHydrationPerformanceBench.php @@ -36,31 +36,31 @@ final class SimpleQueryArrayHydrationPerformanceBench $resultSet = [ [ - 'u__id' => '1', - 'u__status' => 'developer', + 'u__id' => '1', + 'u__status' => 'developer', 'u__username' => 'romanb', - 'u__name' => 'Roman', + 'u__name' => 'Roman', ], [ - 'u__id' => '1', - 'u__status' => 'developer', + 'u__id' => '1', + 'u__status' => 'developer', 'u__username' => 'romanb', - 'u__name' => 'Roman', + 'u__name' => 'Roman', ], [ - 'u__id' => '2', - 'u__status' => 'developer', + 'u__id' => '2', + 'u__status' => 'developer', 'u__username' => 'romanb', - 'u__name' => 'Roman', + 'u__name' => 'Roman', ] ]; for ($i = 4; $i < 10000; ++$i) { $resultSet[] = [ - 'u__id' => $i, - 'u__status' => 'developer', + 'u__id' => $i, + 'u__status' => 'developer', 'u__username' => 'jwage', - 'u__name' => 'Jonathan', + 'u__name' => 'Jonathan', ]; } diff --git a/tests/Doctrine/Performance/Hydration/SimpleQueryScalarHydrationPerformanceBench.php b/tests/Doctrine/Performance/Hydration/SimpleQueryScalarHydrationPerformanceBench.php index 298aaf86b..47242bd8e 100644 --- a/tests/Doctrine/Performance/Hydration/SimpleQueryScalarHydrationPerformanceBench.php +++ b/tests/Doctrine/Performance/Hydration/SimpleQueryScalarHydrationPerformanceBench.php @@ -36,31 +36,31 @@ final class SimpleQueryScalarHydrationPerformanceBench $resultSet = [ [ - 'u__id' => '1', - 'u__status' => 'developer', + 'u__id' => '1', + 'u__status' => 'developer', 'u__username' => 'romanb', - 'u__name' => 'Roman', + 'u__name' => 'Roman', ], [ - 'u__id' => '1', - 'u__status' => 'developer', + 'u__id' => '1', + 'u__status' => 'developer', 'u__username' => 'romanb', - 'u__name' => 'Roman', + 'u__name' => 'Roman', ], [ - 'u__id' => '2', - 'u__status' => 'developer', + 'u__id' => '2', + 'u__status' => 'developer', 'u__username' => 'romanb', - 'u__name' => 'Roman', + 'u__name' => 'Roman', ] ]; for ($i = 4; $i < 10000; ++$i) { $resultSet[] = [ - 'u__id' => $i, - 'u__status' => 'developer', + 'u__id' => $i, + 'u__status' => 'developer', 'u__username' => 'jwage', - 'u__name' => 'Jonathan', + 'u__name' => 'Jonathan', ]; }