@@ -18,17 +18,17 @@ |
||
18 | 18 | */ |
19 | 19 | |
20 | 20 | $ds = DIRECTORY_SEPARATOR; |
21 | -$dispatcher = 'Cake' . $ds . 'Console' . $ds . 'ShellDispatcher.php'; |
|
21 | +$dispatcher = 'Cake'.$ds.'Console'.$ds.'ShellDispatcher.php'; |
|
22 | 22 | |
23 | 23 | if (function_exists('ini_set')) { |
24 | 24 | $root = dirname(dirname(dirname(__FILE__))); |
25 | 25 | |
26 | 26 | // the following line differs from its sibling |
27 | 27 | // /lib/Cake/Console/Templates/skel/Console/cake.php |
28 | - ini_set('include_path', $root . $ds . 'lib' . PATH_SEPARATOR . ini_get('include_path')); |
|
28 | + ini_set('include_path', $root.$ds.'lib'.PATH_SEPARATOR.ini_get('include_path')); |
|
29 | 29 | } |
30 | 30 | |
31 | -if (!include $dispatcher) { |
|
31 | +if ( ! include $dispatcher) { |
|
32 | 32 | trigger_error('Could not locate CakePHP core files.', E_USER_ERROR); |
33 | 33 | } |
34 | 34 | unset($paths, $path, $dispatcher, $root, $ds); |
@@ -1,8 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -class AdminController extends AppController{ |
|
3 | +class AdminController extends AppController { |
|
4 | 4 | |
5 | - public function beforeFilter(){ |
|
5 | + public function beforeFilter() { |
|
6 | 6 | return true; |
7 | 7 | } |
8 | 8 |
@@ -26,14 +26,14 @@ discard block |
||
26 | 26 | |
27 | 27 | if (empty($retorno)) { |
28 | 28 | $this->Session->setFlash('Erro os dados inseridos não foram encotrados!'); |
29 | - return $this->redirect('/admin/usuarios'); |
|
29 | + return $this->redirect('/admin/usuarios'); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | $this->Session->write('Admin.logado', true); |
33 | 33 | |
34 | 34 | $this->Session->setFlash('Sucesso!'); |
35 | 35 | |
36 | - return $this->redirect('/admin/usuarios'); |
|
36 | + return $this->redirect('/admin/usuarios'); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | public function logout() { |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | |
42 | 42 | $this->Session->setFlash('Sucesso!'); |
43 | 43 | |
44 | - return $this->redirect('/admin/login'); |
|
44 | + return $this->redirect('/admin/login'); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | public function usuarios() { |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | * Toda vez que determinado controller não precisa de verificação de acesso o |
24 | 24 | * o mesmo precisa ter essa função rescrita somente com um return true |
25 | 25 | */ |
26 | - public function beforeFilter(){ |
|
26 | + public function beforeFilter() { |
|
27 | 27 | if ($this->debug) { |
28 | 28 | return true; |
29 | 29 | } |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | |
102 | 102 | public function verificar_acesso_admin() { |
103 | 103 | $verificar = $this->Session->read('Admin.logado'); |
104 | - if (!$verificar) { |
|
104 | + if ( ! $verificar) { |
|
105 | 105 | $this->Session->setFlash('Você não possui acesso a está área do sistema'); |
106 | 106 | $this->redirect('/admin/login'); |
107 | 107 | } |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | |
31 | 31 | $this->verificar_acesso(); |
32 | 32 | |
33 | - $this->set('modulos', $this->modulos); |
|
33 | + $this->set('modulos', $this->modulos); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | /* |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | if (count($dados) < 1) { |
44 | 44 | $this->Session->setFlash('Você não tem acesso a esta area do sistema!'); |
45 | - return $this->redirect('/'); |
|
45 | + return $this->redirect('/'); |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | $this->instancia = $dados['id']; |
@@ -79,6 +79,10 @@ |
||
79 | 79 | * Metodo que verifica se determinado modulo está ativo |
80 | 80 | * @param array modulo |
81 | 81 | */ |
82 | + |
|
83 | + /** |
|
84 | + * @param string $modulo |
|
85 | + */ |
|
82 | 86 | function verificar_modulo_ativo($modulo) { |
83 | 87 | $retorno = array_key_exists($modulo, $this->modulos); |
84 | 88 | return $retorno; |
@@ -70,8 +70,7 @@ |
||
70 | 70 | } |
71 | 71 | |
72 | 72 | return true; |
73 | - } |
|
74 | - catch (Exception $e) |
|
73 | + } catch (Exception $e) |
|
75 | 74 | { |
76 | 75 | throw new Exception("Error Processing Request", 1); |
77 | 76 | } |
@@ -79,6 +79,10 @@ |
||
79 | 79 | return false; |
80 | 80 | } |
81 | 81 | |
82 | + /** |
|
83 | + * @param integer $produto_id |
|
84 | + * @param string $email |
|
85 | + */ |
|
82 | 86 | public function enviar_email_aviseme($produto_id, $email) |
83 | 87 | { |
84 | 88 | try { |
@@ -11,17 +11,17 @@ discard block |
||
11 | 11 | |
12 | 12 | $query = array ( |
13 | 13 | 'joins' => array( |
14 | - array( |
|
15 | - 'table' => 'produtos', |
|
16 | - 'alias' => 'Produto', |
|
17 | - 'type' => 'LEFT', |
|
18 | - 'conditions' => array( |
|
19 | - 'AviseMe.produto_id = Produto.id', |
|
20 | - ), |
|
21 | - ) |
|
14 | + array( |
|
15 | + 'table' => 'produtos', |
|
16 | + 'alias' => 'Produto', |
|
17 | + 'type' => 'LEFT', |
|
18 | + 'conditions' => array( |
|
19 | + 'AviseMe.produto_id = Produto.id', |
|
20 | + ), |
|
21 | + ) |
|
22 | 22 | ), |
23 | - 'conditions' => array('AviseMe.ativo' => 1, 'AviseMe.usuario_id' => $this->instancia), |
|
24 | - 'fields' => array('Produto.nome, AviseMe.email, AviseMe.id, Produto.id'), |
|
23 | + 'conditions' => array('AviseMe.ativo' => 1, 'AviseMe.usuario_id' => $this->instancia), |
|
24 | + 'fields' => array('Produto.nome, AviseMe.email, AviseMe.id, Produto.id'), |
|
25 | 25 | ); |
26 | 26 | |
27 | 27 | $cadastros = $this->AviseMe->find('all', $query); |
@@ -48,9 +48,9 @@ discard block |
||
48 | 48 | } |
49 | 49 | |
50 | 50 | /** |
51 | - * @return boolean |
|
52 | - * Cadastra as informações |
|
53 | - **/ |
|
51 | + * @return boolean |
|
52 | + * Cadastra as informações |
|
53 | + **/ |
|
54 | 54 | public function cadastrar_avise_me() |
55 | 55 | { |
56 | 56 | try |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | { |
10 | 10 | $this->loadModel('AviseMe'); |
11 | 11 | |
12 | - $query = array ( |
|
12 | + $query = array( |
|
13 | 13 | 'joins' => array( |
14 | 14 | array( |
15 | 15 | 'table' => 'produtos', |
@@ -37,8 +37,8 @@ discard block |
||
37 | 37 | |
38 | 38 | $id = $this->request->data('id'); |
39 | 39 | |
40 | - $dados = array ('ativo' => '0'); |
|
41 | - $parametros = array ('id' => $id); |
|
40 | + $dados = array('ativo' => '0'); |
|
41 | + $parametros = array('id' => $id); |
|
42 | 42 | |
43 | 43 | if ($this->AviseMe->updateAll($dados, $parametros)) { |
44 | 44 | echo json_encode(true); |
@@ -59,12 +59,12 @@ discard block |
||
59 | 59 | |
60 | 60 | $this->AviseMe->set($this->request->data); |
61 | 61 | |
62 | - if (!$this->AviseMe->validates()) |
|
62 | + if ( ! $this->AviseMe->validates()) |
|
63 | 63 | { |
64 | 64 | return $this->AviseMe->validationErrors; |
65 | 65 | } |
66 | 66 | |
67 | - if (!$this->AviseMe->save($this->request->data)) |
|
67 | + if ( ! $this->AviseMe->save($this->request->data)) |
|
68 | 68 | { |
69 | 69 | return false; |
70 | 70 | } |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | ->subject('Produto Aviso'); |
100 | 100 | |
101 | 101 | $mensagem = ' |
102 | - <p><strong>Nome</strong>: '. $produto[0]['Produto']['nome'] .'</p> |
|
102 | + <p><strong>Nome</strong>: '. $produto[0]['Produto']['nome'].'</p> |
|
103 | 103 | '; |
104 | 104 | |
105 | 105 | if ($email->send($mensagem)) { |
@@ -30,10 +30,10 @@ discard block |
||
30 | 30 | |
31 | 31 | if ($this->CategoriaBanner->save($dados)) { |
32 | 32 | $this->Session->setFlash('Categoria criada com Sucesso!','default','good'); |
33 | - return $this->redirect('/categoria_banner/listar_cadastros'); |
|
33 | + return $this->redirect('/categoria_banner/listar_cadastros'); |
|
34 | 34 | } else { |
35 | 35 | $this->Session->setFlash('Erro ao criar a categoria!','default','good'); |
36 | - return $this->redirect('/categoria_banner/listar_cadastros'); |
|
36 | + return $this->redirect('/categoria_banner/listar_cadastros'); |
|
37 | 37 | } |
38 | 38 | } |
39 | 39 | |
@@ -56,10 +56,10 @@ discard block |
||
56 | 56 | |
57 | 57 | if ($this->CategoriaBanner->save($dados)) { |
58 | 58 | $this->Session->setFlash('Categoria editada com Sucesso!','default','good'); |
59 | - return $this->redirect('/categoria_banner/listar_cadastros'); |
|
59 | + return $this->redirect('/categoria_banner/listar_cadastros'); |
|
60 | 60 | } else { |
61 | 61 | $this->Session->setFlash('Erro ao editar a categoria!','default','good'); |
62 | - return $this->redirect('/categoria_banner/listar_cadastros'); |
|
62 | + return $this->redirect('/categoria_banner/listar_cadastros'); |
|
63 | 63 | } |
64 | 64 | } |
65 | 65 |
@@ -29,10 +29,10 @@ discard block |
||
29 | 29 | $dados['usuario_id'] = $this->instancia; |
30 | 30 | |
31 | 31 | if ($this->CategoriaBanner->save($dados)) { |
32 | - $this->Session->setFlash('Categoria criada com Sucesso!','default','good'); |
|
32 | + $this->Session->setFlash('Categoria criada com Sucesso!', 'default', 'good'); |
|
33 | 33 | return $this->redirect('/categoria_banner/listar_cadastros'); |
34 | 34 | } else { |
35 | - $this->Session->setFlash('Erro ao criar a categoria!','default','good'); |
|
35 | + $this->Session->setFlash('Erro ao criar a categoria!', 'default', 'good'); |
|
36 | 36 | return $this->redirect('/categoria_banner/listar_cadastros'); |
37 | 37 | } |
38 | 38 | } |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | public function editar_cadastro($id) { |
41 | 41 | $categoria = $this->CategoriaBanner->find('first', |
42 | 42 | array('conditions' => |
43 | - array( 'id' => $id ) |
|
43 | + array('id' => $id) |
|
44 | 44 | ) |
45 | 45 | ); |
46 | 46 | |
@@ -55,10 +55,10 @@ discard block |
||
55 | 55 | $this->CategoriaBanner->id = $id; |
56 | 56 | |
57 | 57 | if ($this->CategoriaBanner->save($dados)) { |
58 | - $this->Session->setFlash('Categoria editada com Sucesso!','default','good'); |
|
58 | + $this->Session->setFlash('Categoria editada com Sucesso!', 'default', 'good'); |
|
59 | 59 | return $this->redirect('/categoria_banner/listar_cadastros'); |
60 | 60 | } else { |
61 | - $this->Session->setFlash('Erro ao editar a categoria!','default','good'); |
|
61 | + $this->Session->setFlash('Erro ao editar a categoria!', 'default', 'good'); |
|
62 | 62 | return $this->redirect('/categoria_banner/listar_cadastros'); |
63 | 63 | } |
64 | 64 | } |
@@ -68,14 +68,14 @@ discard block |
||
68 | 68 | |
69 | 69 | $id = $this->request->data('id'); |
70 | 70 | |
71 | - $dados = array ('ativo' => '0'); |
|
72 | - $parametros = array ('id' => $id); |
|
71 | + $dados = array('ativo' => '0'); |
|
72 | + $parametros = array('id' => $id); |
|
73 | 73 | |
74 | 74 | if ($this->CategoriaBanner->updateAll($dados, $parametros)) { |
75 | - $this->Session->setFlash('Categoria excluida com Sucesso!','default','good'); |
|
75 | + $this->Session->setFlash('Categoria excluida com Sucesso!', 'default', 'good'); |
|
76 | 76 | echo json_encode(true); |
77 | 77 | } else { |
78 | - $this->Session->setFlash('Erro ao excluir categoria!','default','good'); |
|
78 | + $this->Session->setFlash('Erro ao excluir categoria!', 'default', 'good'); |
|
79 | 79 | echo json_encode(false); |
80 | 80 | } |
81 | 81 | } |
@@ -31,10 +31,10 @@ discard block |
||
31 | 31 | |
32 | 32 | if ($this->Categoria->save($dados)) { |
33 | 33 | $this->Session->setFlash('Categoria criada com Sucesso!','default','good'); |
34 | - return $this->redirect('/categoria/listar_cadastros'); |
|
34 | + return $this->redirect('/categoria/listar_cadastros'); |
|
35 | 35 | } else { |
36 | 36 | $this->Session->setFlash('Erro ao criar a categoria!','default','good'); |
37 | - return $this->redirect('/categoria/listar_cadastros'); |
|
37 | + return $this->redirect('/categoria/listar_cadastros'); |
|
38 | 38 | } |
39 | 39 | } |
40 | 40 | |
@@ -61,10 +61,10 @@ discard block |
||
61 | 61 | |
62 | 62 | if ($this->Categoria->save($dados)) { |
63 | 63 | $this->Session->setFlash('Categoria editada com Sucesso!','default','good'); |
64 | - return $this->redirect('/categoria/listar_cadastros'); |
|
64 | + return $this->redirect('/categoria/listar_cadastros'); |
|
65 | 65 | } else { |
66 | 66 | $this->Session->setFlash('Erro ao editar a categoria!','default','good'); |
67 | - return $this->redirect('/categoria/listar_cadastros'); |
|
67 | + return $this->redirect('/categoria/listar_cadastros'); |
|
68 | 68 | } |
69 | 69 | } |
70 | 70 |
@@ -30,10 +30,10 @@ discard block |
||
30 | 30 | $dados['usuario_id'] = $this->instancia; |
31 | 31 | |
32 | 32 | if ($this->Categoria->save($dados)) { |
33 | - $this->Session->setFlash('Categoria criada com Sucesso!','default','good'); |
|
33 | + $this->Session->setFlash('Categoria criada com Sucesso!', 'default', 'good'); |
|
34 | 34 | return $this->redirect('/categoria/listar_cadastros'); |
35 | 35 | } else { |
36 | - $this->Session->setFlash('Erro ao criar a categoria!','default','good'); |
|
36 | + $this->Session->setFlash('Erro ao criar a categoria!', 'default', 'good'); |
|
37 | 37 | return $this->redirect('/categoria/listar_cadastros'); |
38 | 38 | } |
39 | 39 | } |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | |
44 | 44 | $categoria = $this->Categoria->find('first', |
45 | 45 | array('conditions' => |
46 | - array( 'id' => $id ) |
|
46 | + array('id' => $id) |
|
47 | 47 | ) |
48 | 48 | ); |
49 | 49 | |
@@ -60,10 +60,10 @@ discard block |
||
60 | 60 | $this->Categoria->id = $id; |
61 | 61 | |
62 | 62 | if ($this->Categoria->save($dados)) { |
63 | - $this->Session->setFlash('Categoria editada com Sucesso!','default','good'); |
|
63 | + $this->Session->setFlash('Categoria editada com Sucesso!', 'default', 'good'); |
|
64 | 64 | return $this->redirect('/categoria/listar_cadastros'); |
65 | 65 | } else { |
66 | - $this->Session->setFlash('Erro ao editar a categoria!','default','good'); |
|
66 | + $this->Session->setFlash('Erro ao editar a categoria!', 'default', 'good'); |
|
67 | 67 | return $this->redirect('/categoria/listar_cadastros'); |
68 | 68 | } |
69 | 69 | } |
@@ -75,14 +75,14 @@ discard block |
||
75 | 75 | |
76 | 76 | $id = $this->request->data('id'); |
77 | 77 | |
78 | - $dados = array ('ativo' => '0'); |
|
79 | - $parametros = array ('id' => $id); |
|
78 | + $dados = array('ativo' => '0'); |
|
79 | + $parametros = array('id' => $id); |
|
80 | 80 | |
81 | 81 | if ($this->Categoria->updateAll($dados, $parametros)) { |
82 | - $this->Session->setFlash('Categoria excluida com Sucesso!','default','good'); |
|
82 | + $this->Session->setFlash('Categoria excluida com Sucesso!', 'default', 'good'); |
|
83 | 83 | echo json_encode(true); |
84 | 84 | } else { |
85 | - $this->Session->setFlash('Erro ao excluir categoria!','default','good'); |
|
85 | + $this->Session->setFlash('Erro ao excluir categoria!', 'default', 'good'); |
|
86 | 86 | echo json_encode(false); |
87 | 87 | } |
88 | 88 | } |
@@ -2,6 +2,6 @@ |
||
2 | 2 | |
3 | 3 | class AuthComponent extends Component{ |
4 | 4 | function doComplexOperation($amount1, $amount2) { |
5 | - return $amount1 + $amount2; |
|
6 | - } |
|
5 | + return $amount1 + $amount2; |
|
6 | + } |
|
7 | 7 | } |
8 | 8 | \ No newline at end of file |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -class AuthComponent extends Component{ |
|
3 | +class AuthComponent extends Component { |
|
4 | 4 | function doComplexOperation($amount1, $amount2) { |
5 | 5 | return $amount1 + $amount2; |
6 | 6 | } |
@@ -2,7 +2,7 @@ discard block |
||
2 | 2 | |
3 | 3 | class ConsultaController extends AppController { |
4 | 4 | |
5 | - public function listar_cadastros(){ |
|
5 | + public function listar_cadastros() { |
|
6 | 6 | $this->loadModel('Consulta'); |
7 | 7 | $consultas = $this->Consulta->find('all', |
8 | 8 | array('conditions' => |
@@ -21,10 +21,10 @@ discard block |
||
21 | 21 | $id = $this->request->data('id'); |
22 | 22 | $this->loadModel('Consulta'); |
23 | 23 | |
24 | - $dados = array ('ativo' => '0'); |
|
25 | - $parametros = array ('id' => $id); |
|
24 | + $dados = array('ativo' => '0'); |
|
25 | + $parametros = array('id' => $id); |
|
26 | 26 | |
27 | - if ($this->Consulta->updateAll($dados,$parametros)) { |
|
27 | + if ($this->Consulta->updateAll($dados, $parametros)) { |
|
28 | 28 | echo json_encode(true); |
29 | 29 | } else { |
30 | 30 | echo json_encode(false); |
@@ -31,10 +31,10 @@ discard block |
||
31 | 31 | |
32 | 32 | if ($this->Cupom->save($dados)) { |
33 | 33 | $this->Session->setFlash('Cupom criado com sucesso!'); |
34 | - return $this->redirect('/cupom/listar_cadastros'); |
|
34 | + return $this->redirect('/cupom/listar_cadastros'); |
|
35 | 35 | } else { |
36 | 36 | $this->Session->setFlash('Ocorreu algum erro ao criar o cupom!'); |
37 | - return $this->redirect('/cupom/listar_cadastros'); |
|
37 | + return $this->redirect('/cupom/listar_cadastros'); |
|
38 | 38 | } |
39 | 39 | } |
40 | 40 | |
@@ -62,10 +62,10 @@ discard block |
||
62 | 62 | |
63 | 63 | if ($this->Cupom->save($dados)) { |
64 | 64 | $this->Session->setFlash('Cupom editado com sucesso!'); |
65 | - return $this->redirect('/cupom/listar_cadastros'); |
|
65 | + return $this->redirect('/cupom/listar_cadastros'); |
|
66 | 66 | } else { |
67 | 67 | $this->Session->setFlash('Ocorreu algum erro ao editar o cupom!'); |
68 | - return $this->redirect('/cupom/listar_cadastros'); |
|
68 | + return $this->redirect('/cupom/listar_cadastros'); |
|
69 | 69 | } |
70 | 70 | } |
71 | 71 | |
@@ -77,19 +77,19 @@ discard block |
||
77 | 77 | |
78 | 78 | if ($this->Cupom->save($dados)) { |
79 | 79 | $this->Session->setFlash('Cupom excluido com sucesso!'); |
80 | - return $this->redirect('/cupom/listar_cadastros'); |
|
80 | + return $this->redirect('/cupom/listar_cadastros'); |
|
81 | 81 | } else { |
82 | 82 | $this->Session->setFlash('Ocorreu algum erro ao excluir o cupom!'); |
83 | - return $this->redirect('/cupom/listar_cadastros'); |
|
83 | + return $this->redirect('/cupom/listar_cadastros'); |
|
84 | 84 | } |
85 | 85 | } |
86 | 86 | |
87 | 87 | |
88 | 88 | /** |
89 | - * @param nome cupom |
|
90 | - * @param usuario id |
|
91 | - * @return false ou o array com os dados do cupom |
|
92 | - **/ |
|
89 | + * @param nome cupom |
|
90 | + * @param usuario id |
|
91 | + * @return false ou o array com os dados do cupom |
|
92 | + **/ |
|
93 | 93 | public function procurar_cupom($nome_cupom, $usuario_id) |
94 | 94 | { |
95 | 95 | if (empty($nome_cupom) && !isset($nome_cupom)) |
@@ -116,9 +116,9 @@ discard block |
||
116 | 116 | } |
117 | 117 | |
118 | 118 | /** |
119 | - * @param valor original float |
|
120 | - * @return float com o valor final ja considerando o valor do cupom |
|
121 | - **/ |
|
119 | + * @param valor original float |
|
120 | + * @return float com o valor final ja considerando o valor do cupom |
|
121 | + **/ |
|
122 | 122 | public function calcular_desconto_cupom($valor_original, $valor_desconto_cupom, $tipo_cupom) |
123 | 123 | { |
124 | 124 | if (empty($valor_original) && !isset($valor_original)) |
@@ -140,10 +140,10 @@ discard block |
||
140 | 140 | } |
141 | 141 | |
142 | 142 | /** |
143 | - * @param $cupom String nome do cupom a ser utilizado |
|
144 | - * @param $valor float com o valor original da venda |
|
145 | - * @return $novo_valor float com o novo valor da venda |
|
146 | - **/ |
|
143 | + * @param $cupom String nome do cupom a ser utilizado |
|
144 | + * @param $valor float com o valor original da venda |
|
145 | + * @return $novo_valor float com o novo valor da venda |
|
146 | + **/ |
|
147 | 147 | public function utilizar_cupom($cupom, $valor_original, $usuario_id) |
148 | 148 | { |
149 | 149 | if (empty($cupom) && !isset($cupom)) |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | **/ |
93 | 93 | public function procurar_cupom($nome_cupom, $usuario_id) |
94 | 94 | { |
95 | - if (empty($nome_cupom) && !isset($nome_cupom)) |
|
95 | + if (empty($nome_cupom) && ! isset($nome_cupom)) |
|
96 | 96 | { |
97 | 97 | return false; |
98 | 98 | } |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | **/ |
122 | 122 | public function calcular_desconto_cupom($valor_original, $valor_desconto_cupom, $tipo_cupom) |
123 | 123 | { |
124 | - if (empty($valor_original) && !isset($valor_original)) |
|
124 | + if (empty($valor_original) && ! isset($valor_original)) |
|
125 | 125 | { |
126 | 126 | return false; |
127 | 127 | } |
@@ -146,14 +146,14 @@ discard block |
||
146 | 146 | **/ |
147 | 147 | public function utilizar_cupom($cupom, $valor_original, $usuario_id) |
148 | 148 | { |
149 | - if (empty($cupom) && !isset($cupom)) |
|
149 | + if (empty($cupom) && ! isset($cupom)) |
|
150 | 150 | { |
151 | 151 | return false; |
152 | 152 | } |
153 | 153 | |
154 | 154 | $cupom = $this->procurar_cupom($cupom, $usuario_id); |
155 | 155 | |
156 | - if (!$cupom) |
|
156 | + if ( ! $cupom) |
|
157 | 157 | { |
158 | 158 | return false; |
159 | 159 | } |