Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauriciofauth@gmail.com>2018-05-30 07:42:21 +0300
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2018-05-30 07:42:21 +0300
commitb9c0463d960494cbfe0f04b3159c5ff4a467c446 (patch)
tree9fe17f2cc230558fbff7a76b9386600ac37d0e8e /server_engines.php
parent93bf3d0d1739ec3b15d0e0317ee18b222c58c462 (diff)
Use short array syntax instead of long array syntax
Replaces array() with []. Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'server_engines.php')
-rw-r--r--server_engines.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/server_engines.php b/server_engines.php
index 7e6c5f2fce..e389ffefcf 100644
--- a/server_engines.php
+++ b/server_engines.php
@@ -26,6 +26,6 @@ $container->alias('response', 'PhpMyAdmin\Response');
/** @var ServerEnginesController $controller */
$controller = $container->get(
- 'ServerEnginesController', array()
+ 'ServerEnginesController', []
);
$controller->indexAction();