From f3b201d07fe7843affdbac4595730c8f7da5dccc Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Mon, 9 Mar 2015 15:04:28 -0400 Subject: [PATCH] php-cs-fixer --- .../src/VuDLTest/Connection/AbstractBaseTest.php | 10 +++++----- .../unit-tests/src/VuDLTest/Connection/ManagerTest.php | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/module/VuDL/tests/unit-tests/src/VuDLTest/Connection/AbstractBaseTest.php b/module/VuDL/tests/unit-tests/src/VuDLTest/Connection/AbstractBaseTest.php index a93ff25268c..3a3ac42b80d 100644 --- a/module/VuDL/tests/unit-tests/src/VuDLTest/Connection/AbstractBaseTest.php +++ b/module/VuDL/tests/unit-tests/src/VuDLTest/Connection/AbstractBaseTest.php @@ -47,23 +47,23 @@ class AbstractBaseTest extends \VuFindTest\Unit\TestCase class FakeInterface implements \VuFindHttp\HttpServiceInterface { - public function proxify(\Zend\Http\Client $client, array $options = []) + public function proxify(\Zend\Http\Client $client, array $options = []) { } - public function get($url, array $params = [], $timeout = null) + public function get($url, array $params = [], $timeout = null) { } - public function post($url, $body = null, $type = 'application/octet-stream', $timeout = null) + public function post($url, $body = null, $type = 'application/octet-stream', $timeout = null) { } - public function postForm($url, array $params = [], $timeout = null) + public function postForm($url, array $params = [], $timeout = null) { } - public function createClient($url, $method = \Zend\Http\Request::METHOD_GET, $timeout = null) + public function createClient($url, $method = \Zend\Http\Request::METHOD_GET, $timeout = null) { } diff --git a/module/VuDL/tests/unit-tests/src/VuDLTest/Connection/ManagerTest.php b/module/VuDL/tests/unit-tests/src/VuDLTest/Connection/ManagerTest.php index 1f7ff215a3e..25b3473e124 100644 --- a/module/VuDL/tests/unit-tests/src/VuDLTest/Connection/ManagerTest.php +++ b/module/VuDL/tests/unit-tests/src/VuDLTest/Connection/ManagerTest.php @@ -88,7 +88,7 @@ class ManagerTest extends \VuFindTest\Unit\TestCase class FakeServiceLocator { - public function get($class) + public function get($class) { if($class == "VuDL\\Connection\\First") { return new First(); -- GitLab