Passed
Push — feature/paypal-express ( ce80ae...be9f92 )
by Volodymyr
03:58
created

PaypalExpressController   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 14
rs 10
c 0
b 0
f 0
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A cancelAction() 0 2 1
A successAction() 0 2 1
A failureAction() 0 2 1
1
<?php
2
3
namespace SprykerEco\Yves\Braintree\Controller;
4
5
use Spryker\Yves\Kernel\Controller\AbstractController;
6
7
class PaypalExpressController extends AbstractController
8
{
9
    public function successAction()
10
    {
11
12
    }
13
14
    public function failureAction()
15
    {
16
17
    }
18
19
    public function cancelAction()
20
    {
21
22
    }
23
}