getOptions() public method

public getOptions ( ) : array
return array
Example #1
0
 /**
  * @param array $options
  *
  * @return BitBucketClient
  */
 protected static function getBitBucketClient(array $options = [])
 {
     if (null === static::$client || static::$client->getOptions() !== $options) {
         static::$client = new BitBucketClient($options);
     }
     return static::$client;
 }