Completed
Push — master ( 924818...a51019 )
by Adriano
02:59
created
src/Integracao/ControlPay/AbstractAPI.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
 
48 48
     /**
49 49
      * AbstractAPI constructor.
50
-     * @param $endpoint
50
+     * @param string $endpoint
51 51
      * @param Client|null $client
52 52
      */
53 53
     protected function __construct($endpoint, Client $client = null)
Please login to merge, or discard this patch.
src/Integracao/ControlPay/Contracts/Login/ConsultaLoginRequest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 
36 36
     /**
37 37
      * @param string $cpfCnpj
38
-     * @return Login
38
+     * @return ConsultaLoginRequest
39 39
      */
40 40
     public function setCpfCnpj($cpfCnpj)
41 41
     {
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
     /**
55 55
      * @param string $senha
56
-     * @return Login
56
+     * @return ConsultaLoginRequest
57 57
      */
58 58
     public function setSenha($senha)
59 59
     {
Please login to merge, or discard this patch.
src/Integracao/ControlPay/Contracts/Login/ConsultaLoginResponse.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
     /**
46 46
      * @param \DateTime $data
47
-     * @return LoginResponse
47
+     * @return ConsultaLoginResponse
48 48
      */
49 49
     public function setData($data)
50 50
     {
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
     /**
64 64
      * @param Pessoa $pessoa
65
-     * @return LoginResponse
65
+     * @return ConsultaLoginResponse
66 66
      */
67 67
     public function setPessoa($pessoa)
68 68
     {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 
85 85
     /**
86 86
      * @param Operador $operador
87
-     * @return LoginResponse
87
+     * @return ConsultaLoginResponse
88 88
      */
89 89
     public function setOperador($operador)
90 90
     {
Please login to merge, or discard this patch.
src/Integracao/ControlPay/Contracts/Login/LoginRequest.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
     /**
42 42
      * @param string $cpfCnpj
43
-     * @return Login
43
+     * @return LoginRequest
44 44
      */
45 45
     public function setCpfCnpj($cpfCnpj)
46 46
     {
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
     /**
60 60
      * @param string $senha
61
-     * @return Login
61
+     * @return LoginRequest
62 62
      */
63 63
     public function setSenha($senha)
64 64
     {
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 
77 77
     /**
78 78
      * @param int $pessoaId
79
-     * @return Login
79
+     * @return LoginRequest
80 80
      */
81 81
     public function setPessoaId($pessoaId)
82 82
     {
Please login to merge, or discard this patch.
src/Integracao/ControlPay/Contracts/Terminal/InsertRequest.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
     /**
52 52
      * @param int $id
53
-     * @return FluxoPagamento
53
+     * @return InsertRequest
54 54
      */
55 55
     public function setId($id)
56 56
     {
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 
69 69
     /**
70 70
      * @param string $nome
71
-     * @return FluxoPagamento
71
+     * @return InsertRequest
72 72
      */
73 73
     public function setNome($nome)
74 74
     {
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
     /**
88 88
      * @param string $impressora
89
-     * @return Terminal
89
+     * @return InsertRequest
90 90
      */
91 91
     public function setImpressora($impressora)
92 92
     {
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 
109 109
     /**
110 110
      * @param Pessoa $pessoa
111
-     * @return Terminal
111
+     * @return InsertRequest
112 112
      */
113 113
     public function setPessoa($pessoa)
114 114
     {
Please login to merge, or discard this patch.
src/Integracao/ControlPay/Model/IntencaoVenda.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@
 block discarded – undo
182 182
     }
183 183
 
184 184
     /**
185
-     * @return mixed
185
+     * @return integer
186 186
      */
187 187
     public function getId()
188 188
     {
Please login to merge, or discard this patch.
src/Integracao/ControlPay/Model/Pagamento.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     }
72 72
 
73 73
     /**
74
-     * @return Conta
74
+     * @return ContaBancaria
75 75
      */
76 76
     public function getContaBancaria()
77 77
     {
Please login to merge, or discard this patch.
src/Integracao/ControlPay/Model/Terminal.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
     /**
48 48
      * @param int $id
49
-     * @return FluxoPagamento
49
+     * @return Terminal
50 50
      */
51 51
     public function setId($id)
52 52
     {
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 
65 65
     /**
66 66
      * @param string $nome
67
-     * @return FluxoPagamento
67
+     * @return Terminal
68 68
      */
69 69
     public function setNome($nome)
70 70
     {
Please login to merge, or discard this patch.