-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Proper composer include and object changes (APPSPEED-107) (#8)
* composer autoload and invoice change * use classmap * add some missing classes * allow null bankAccount for entity * non-mandatory supplier and customer * add previously missing methods and missing project attribute
- Loading branch information
1 parent
bfa6869
commit d0d153d
Showing
10 changed files
with
100 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
{ | ||
"name": "clearbooks/clearbooks-soap-php" | ||
} | ||
"name": "clearbooks/clearbooks-soap-php", | ||
"autoload": { | ||
"classmap": [ "src/" ] | ||
} | ||
} |
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,17 @@ | ||
<?php | ||
/** | ||
* @author Clear Books <[email protected]> | ||
* @version 1.0 | ||
*/ | ||
class Clearbooks_Soap_1_0_Bank_BankAccount | ||
{ | ||
/** @var string */ | ||
public $name; | ||
|
||
/** @var string */ | ||
public $accountNumber; | ||
|
||
/** @var string */ | ||
public $sortCode; | ||
} | ||
//EOF BankAccount.php |
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,19 @@ | ||
<?php | ||
/** | ||
* @author Clear Books <[email protected]> | ||
* @version 1.0 | ||
* @package Clearbooks | ||
* @subpackage Soap/1/0 | ||
*/ | ||
class Clearbooks_Soap_1_0_BankStatementLine | ||
{ | ||
/** @var string */ | ||
public $description; | ||
|
||
/** @var string */ | ||
public $date; | ||
|
||
/** @var float */ | ||
public $amount; | ||
} | ||
//EOF BankStatementLine.php |
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,23 @@ | ||
<?php | ||
/** | ||
* @author Clear Books <[email protected]> | ||
* @version 1.0 | ||
* @package Clearbooks | ||
* @subpackage Soap/1/0 | ||
*/ | ||
class Clearbooks_Soap_1_0_CreditPartialQuery | ||
{ | ||
/** @var int */ | ||
public $invoiceId; | ||
|
||
/** @var int */ | ||
public $creditId; | ||
|
||
/** @var float */ | ||
public $amountToAllocate; | ||
|
||
/** @var string */ | ||
public $ledger; | ||
|
||
} | ||
//EOF CreditPartialQuery.php |
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
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
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