Passed
Push — feature/paypal-express ( be9f92...d19b14 )
by Volodymyr
05:26
created

PaypalExpressController::cancelAction()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 0
dl 0
loc 2
rs 10
c 0
b 0
f 0
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
        var_dump('here'); exit;
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
Security Debugging Code introduced by
var_dump('here') looks like debug code. Are you sure you do not want to remove it?
Loading history...
12
    }
13
}