/** * Set up our test fixture. * * Expect a service URL something like this: * http://api.nfldata.apiphany.com/developer/json/Players/NE?key=000aaaa0-a00a-0000-0a0a-aa0a00000000 */ public static function setUpBeforeClass() { static::$sClient = new MockClient($_SERVER['FANTASY_DATA_API_KEY'], Subscription::KEY_DEVELOPER); /** \GuzzleHttp\Command\Model */ static::$sClient->Players(['Team' => 'NE']); static::$sResponse = static::$sClient->mHistory->getLastResponse(); static::$sEffectiveUrl = static::$sResponse->getEffectiveUrl(); static::$sUrlFragments = explode('/', static::$sEffectiveUrl); }