-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from AlexandreBellas/develop
feat: atualizar para v308
- Loading branch information
Showing
115 changed files
with
2,723 additions
and
254 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
namespace AleBatistella\BlingErpApi\Entities\Shared\DTO\Schema; | ||
|
||
use AleBatistella\BlingErpApi\Entities\Shared\BaseResponseObject; | ||
|
||
/** | ||
* Objeto com ID opcional. | ||
*/ | ||
final readonly class OptionalId extends BaseResponseObject | ||
{ | ||
/** | ||
* Constrói o objeto. | ||
* | ||
* @param ?int $id | ||
*/ | ||
public function __construct(public ?int $id) {} | ||
} |
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
32 changes: 0 additions & 32 deletions
32
src/Entities/ContasReceber/Schema/GetBankSlips/GetBankSlipsAccountsResponse.php
This file was deleted.
Oops, something went wrong.
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
27 changes: 27 additions & 0 deletions
27
src/Entities/ContasReceber/Schema/GetBankSlips/GetBankSlipsResponseContas.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,27 @@ | ||
<?php | ||
|
||
namespace AleBatistella\BlingErpApi\Entities\ContasReceber\Schema\GetBankSlips; | ||
|
||
use AleBatistella\BlingErpApi\Entities\Shared\BaseResponseObject; | ||
use AleBatistella\BlingErpApi\Entities\ContasReceber\Enum\BankSlipSituacao; | ||
|
||
readonly final class GetBankSlipsResponseContas extends BaseResponseObject | ||
{ | ||
|
||
/** | ||
* Constrói o objeto. | ||
* | ||
* @param ?int $id | ||
* @param ?string $numeroExterno | ||
* @param ?string $vencimento | ||
* @param ?float $valor | ||
* @param ?BankSlipSituacao $situacao | ||
*/ | ||
public function __construct( | ||
public ?int $id, | ||
public ?string $numeroExterno, | ||
public ?string $vencimento, | ||
public ?float $valor, | ||
public ?BankSlipSituacao $situacao, | ||
) {} | ||
} |
Oops, something went wrong.