Skip to content

Commit 739c924

Browse files
committed
Variable names in camel case
1 parent 093fbf5 commit 739c924

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

samples/tutorials/php/RHEL/SqlServerColumnstoreSample/columnstore.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
$time_start = microtime(true);
2+
$timeStart = microtime(true);
33

44
$serverName = "localhost";
55
$connectionOptions = [
@@ -34,6 +34,6 @@ function formatErrors($errors)
3434
}
3535
}
3636

37-
$time_end = microtime(true);
38-
$execution_time = round((($time_end - $time_start) * 1000), 2);
39-
echo 'QueryTime: ' . $execution_time . ' ms';
37+
$timeEnd = microtime(true);
38+
$executionTime = round((($timeEnd - $timeStart) * 1000), 2);
39+
echo 'QueryTime: ' . $executionTime . ' ms';

samples/tutorials/php/Ubuntu/SqlServerColumnstoreSample/columnstore.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
$time_start = microtime(true);
2+
$timeStart = microtime(true);
33

44
$serverName = "localhost";
55
$connectionOptions = [
@@ -34,6 +34,6 @@ function formatErrors($errors)
3434
}
3535
}
3636

37-
$time_end = microtime(true);
38-
$execution_time = round((($time_end - $time_start) * 1000), 2);
39-
echo 'QueryTime: ' . $execution_time . ' ms';
37+
$timeEnd = microtime(true);
38+
$executionTime = round((($timeEnd - $timeStart) * 1000), 2);
39+
echo 'QueryTime: ' . $executionTime . ' ms';

samples/tutorials/php/Windows/SqlServerColumnstoreSample/columnstore.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
$time_start = microtime(true);
2+
$timeStart = microtime(true);
33

44
$serverName = "localhost";
55
$connectionOptions = [
@@ -34,6 +34,6 @@ function formatErrors($errors)
3434
}
3535
}
3636

37-
$time_end = microtime(true);
38-
$execution_time = round((($time_end - $time_start) * 1000), 2);
39-
echo 'QueryTime: ' . $execution_time . ' ms';
37+
$timeEnd = microtime(true);
38+
$executionTime = round((($timeEnd - $timeStart) * 1000), 2);
39+
echo 'QueryTime: ' . $executionTime . ' ms';

0 commit comments

Comments
 (0)