This repository has been archived by the owner on Sep 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Fabien SUAREZ
committed
Mar 10, 2016
1 parent
cd1d019
commit 36c2cfb
Showing
5 changed files
with
136 additions
and
7 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 |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
], | ||
"require" : { | ||
"php" : ">=5.3.0", | ||
"monolog/monolog" : "1.0.*" | ||
"monolog/monolog" : "1.*" | ||
}, | ||
"support" : { | ||
"email" : "[email protected]", | ||
|
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,28 @@ | ||
<?php | ||
/* | ||
* This file is part of the Payline package. | ||
* | ||
* (c) Monext <http://www.monext.net> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
namespace Payline; | ||
|
||
class Recurring | ||
{ | ||
|
||
public $firstAmount; | ||
|
||
public $amount; | ||
|
||
public $billingCycle; | ||
|
||
public $billingLeft; | ||
|
||
public $billingDay; | ||
|
||
public $startDate; | ||
|
||
public $endDate; | ||
} |
File renamed without changes.