From bd4909b25a70c6b05093535e9fe539dc836aa0bf Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Wed, 28 Oct 2015 12:53:58 -0400
Subject: [PATCH] php-cs-fixer

---
 .../src/VuFindTest/Mink/RecordActionsTest.php            | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/RecordActionsTest.php b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/RecordActionsTest.php
index 5489c8d27bb..b087bfd030f 100644
--- a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/RecordActionsTest.php
+++ b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/RecordActionsTest.php
@@ -26,7 +26,6 @@
  * @link     http://www.vufind.org  Main Page
  */
 namespace VuFindTest\Mink;
-use VuFindTest\Auth\DatabaseTest;
 
 /**
  * Mink record actions test class.
@@ -154,7 +153,7 @@ class RecordActionsTest extends \VuFindTest\Unit\MinkTestCase
         // Make account
         $page->find('css', '.modal-body .createAccountLink')->click();
         $this->fillInAccountForm(
-            $page, ['username'=>'username2', 'email'=>'test2@com.com']
+            $page, ['username' => 'username2', 'email' => 'test2@com.com']
         );
         $page->find('css', '.modal-body .btn.btn-primary')->click();
         $this->assertNotNull($page->find('css', '.modal #addtag_tag'));
@@ -177,7 +176,7 @@ class RecordActionsTest extends \VuFindTest\Unit\MinkTestCase
         $tags = $page->findAll('css', '#tagList .tag');
         $this->assertEquals(4, count($tags));
         $tvals = [];
-        foreach ($tags as $i=>$t) {
+        foreach ($tags as $i => $t) {
             $link = $t->find('css', 'a');
             $tvals[] = $link->getText();
         }
@@ -230,7 +229,7 @@ class RecordActionsTest extends \VuFindTest\Unit\MinkTestCase
     {
         // Change the theme:
         $this->changeConfigs(
-            array('config' => array('Site' => array('theme' => 'bootstrap3')))
+            ['config' => ['Site' => ['theme' => 'bootstrap3']]]
         );
 
         // Go to the advanced search page
@@ -285,7 +284,7 @@ class RecordActionsTest extends \VuFindTest\Unit\MinkTestCase
     {
         // Change the theme:
         $this->changeConfigs(
-            array('config' => array('Site' => array('theme' => 'bootstrap3')))
+            ['config' => ['Site' => ['theme' => 'bootstrap3']]]
         );
 
         // Go to the advanced search page
-- 
GitLab