Showing 19 of 25 total issues
PayModel
has 26 functions (exceeds 20 allowed). Consider refactoring. Open
class PayModel extends Model
{
public $id;
public $totalAmount;
public $orderId;
Transaction
has 22 functions (exceeds 20 allowed). Consider refactoring. Open
abstract class Transaction extends BaseObject
{
/**
* Creates the transaction and mostly redirects to the provider afterwards.
*/
Process
has 21 functions (exceeds 20 allowed). Consider refactoring. Open
class Process extends NgRestModel
{
public const STATE_PENDING = 0;
public const STATE_SUCCESS = 1;
Method create
has 42 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function create()
{
// handle incoming post requests, with body param or post data.
if (Yii::$app->request->isPost) {
Stripe::setApiKey($this->secretKey);
Method getCreateModel
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
protected function getCreateModel()
{
if ($this->_model) {
return $this->_model;
}
Method createModel
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function createModel(PayModel $model)
{
$process = new Process();
$process->amount = $model->totalAmount;
$process->currency = $model->currency;
Method ngRestActiveWindows
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function ngRestActiveWindows()
{
return [
[
'class' => DetailViewActiveWindow::class,
Function create
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
public function create()
{
// handle incoming post requests, with body param or post data.
if (Yii::$app->request->isPost) {
Stripe::setApiKey($this->secretKey);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method safeUp
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function safeUp()
{
$this->createTable('payment_process', [
'id' => $this->primaryKey(),
'salt' => $this->string(120)->notNull(),
Method addItem
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
public function addItem($name, $qty, $amount, $totalAmount, $isShipping, $isTax)
Consider simplifying this complex logical expression. Open
if (empty($this->_orderId) || empty($this->_totalAmount) || empty($this->_currency) || is_null($this->_successLink) || is_null($this->_errorLink) || is_null($this->_abortLink)) {
throw new PaymentException("orderId, totalAmount, currency, successLink, errorLink and abortLink properties can not be null!");
}
Method internalAddItem
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
private function internalAddItem($name, $qty, $amount, $isTax, $isShipping)
Function getCreateModel
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
protected function getCreateModel()
{
if ($this->_model) {
return $this->_model;
}
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Avoid too many return
statements within this method. Open
return Yii::$app->view->render('@payment/stripe/layout', [
'content' => $html,
]);
Avoid too many return
statements within this method. Open
return $this->getContext()->renderContent($html);
Avoid too many return
statements within this method. Open
return $this->redirect($model->getApplicationErrorLink());
Avoid too many return
statements within this method. Open
return false;
Avoid too many return
statements within this method. Open
return $this->redirectTransactionFail();
Function assertAndCapture
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private function assertAndCapture()
{
$data = $this->getIntegrator()->getProviderData($this->getModel());
if (!isset($data['initialize']['Token'])) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"