Beispiel #1
0
 /**
  * Get a singleton instance of Plaid
  *
  * @return \OldTimeGuitarGuy\Plaid\Plaid
  */
 protected function plaid()
 {
     if (isset(self::$plaid)) {
         return self::$plaid;
     }
     $request = new Request(new GuzzleClient(), 'test_id', 'test_secret', false);
     return self::$plaid = new Plaid($request);
 }