-
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.
Feature/adiciona novas features (#43)
* Adiciona pasta de configuração do PHPStorm no .gitignore * Adiciona opção de passar VINDI_API_URI e VINDI_API_KEY como argumentos Opção de passar VINDI_API_URI e VINDI_API_KEY como argumentos nas instancias de classes filhas de Resource * Atualiza versão 1.1.0 na classe Vindi * Volta o código original * Retira .idea do gitignore * Adiciona opção de passar VINDI_API_URI e VINDI_API_KEY como argumentos Opção de passar VINDI_API_URI e VINDI_API_KEY como argumentos nas instâncias de classes filhas de Resource Refatora código da classe Vindi para melhor adequar as mudanças realizadas nessa feature * Refatora README para melhor entendimento da nova feature * Refatora CHANGELOG para melhor entendimento * Altera idioma de uma frase no CHANGELOG * Refatora para melhor entendimento do README * Refatora ordem de importância de VINDI_API_KEY e VINDI_API_URI * Adiciona exemplo de API URI * Refatora teste da classe Vindi * Altera ênfase na explicação sobre outra instancia * Adiciona classe Notifications e testes * Adiciona novos métodos * Separa os meios de autenticação do README * Retira menção sobre .env * Adiciona docblock do PHP * Ajusta teste da classe Vindi
- Loading branch information
Showing
35 changed files
with
380 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,11 @@ | |
|
||
namespace Vindi; | ||
|
||
/** | ||
* Class BillItem | ||
* | ||
* @package Vindi | ||
*/ | ||
class BillItem extends Resource | ||
{ | ||
/** | ||
|
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 |
---|---|---|
|
@@ -2,6 +2,11 @@ | |
|
||
namespace Vindi; | ||
|
||
/** | ||
* Class Discount | ||
* | ||
* @package Vindi | ||
*/ | ||
class Discount extends Resource | ||
{ | ||
/** | ||
|
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 |
---|---|---|
@@ -1,5 +1,10 @@ | ||
<?php namespace Vindi\Exceptions; | ||
|
||
/** | ||
* Class WebhookHandleException | ||
* | ||
* @package Vindi\Exceptions | ||
*/ | ||
class WebhookHandleException extends \Exception | ||
{ | ||
} |
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 |
---|---|---|
|
@@ -2,6 +2,11 @@ | |
|
||
namespace Vindi; | ||
|
||
/** | ||
* Class Issue | ||
* | ||
* @package Vindi | ||
*/ | ||
class Issue extends Resource | ||
{ | ||
/** | ||
|
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 |
---|---|---|
|
@@ -2,6 +2,11 @@ | |
|
||
namespace Vindi; | ||
|
||
/** | ||
* Class Merchant | ||
* | ||
* @package Vindi | ||
*/ | ||
class Merchant extends Resource | ||
{ | ||
/** | ||
|
Oops, something went wrong.