-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Bruno Gaspar <[email protected]>
- Loading branch information
1 parent
0e6e865
commit ee264af
Showing
2 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?php | ||
|
||
/** | ||
* Part of the Stripe package. | ||
* | ||
* NOTICE OF LICENSE | ||
* | ||
* Licensed under the 3-clause BSD License. | ||
* | ||
* This source file is subject to the 3-clause BSD License that is | ||
* bundled with this package in the LICENSE file. | ||
* | ||
* @package Stripe | ||
* @version 2.3.0 | ||
* @author Cartalyst LLC | ||
* @license BSD License (3-clause) | ||
* @copyright (c) 2011-2019, Cartalyst LLC | ||
* @link http://cartalyst.com | ||
*/ | ||
|
||
namespace Cartalyst\Stripe\Api\Account; | ||
|
||
use Cartalyst\Stripe\Api\Api; | ||
|
||
class AccountLink extends Api | ||
{ | ||
/** | ||
* Creates a new account link. | ||
* | ||
* @param array $parameters | ||
* @return array | ||
*/ | ||
public function create(array $parameters = []) | ||
{ | ||
return $this->_post('account_links', $parameters); | ||
} | ||
} |