Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
unsatisfiableness
/
core
/
lib
/
coinbase
/
coinbase-commerce
/
tests
/
GuzzleClientMock
:
GuzzleMockClientFactoryMethod.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace CoinbaseCommerce\Tests\GuzzleClientMock; class GuzzleMockClientFactoryMethod { public static function create() { if (class_exists('GuzzleHttp\Handler\MockHandler')) { return new NewGuzzleHelperHelper(); } elseif (class_exists('GuzzleHttp\Subscriber\Mock')) { return new OldGuzzleHelperHelper(); } else { throw new \Exception('Not supported Guzzle version.'); } } }