Skip to content
Snippets Groups Projects
Commit f3b201d0 authored by Demian Katz's avatar Demian Katz
Browse files

php-cs-fixer

parent 621049e3
Branches
Tags
No related merge requests found
...@@ -47,23 +47,23 @@ class AbstractBaseTest extends \VuFindTest\Unit\TestCase ...@@ -47,23 +47,23 @@ class AbstractBaseTest extends \VuFindTest\Unit\TestCase
class FakeInterface implements \VuFindHttp\HttpServiceInterface 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)
{ {
} }
......
...@@ -88,7 +88,7 @@ class ManagerTest extends \VuFindTest\Unit\TestCase ...@@ -88,7 +88,7 @@ class ManagerTest extends \VuFindTest\Unit\TestCase
class FakeServiceLocator class FakeServiceLocator
{ {
public function get($class) public function get($class)
{ {
if($class == "VuDL\\Connection\\First") { if($class == "VuDL\\Connection\\First") {
return new First(); return new First();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment