dofinity/pelecard

View on GitHub
src/Pelecard/CaptionSet.php

Summary

Maintainability
A
0 mins
Test Coverage

The class CaptionSet has 32 fields. Consider redesigning CaptionSet to keep the number of fields under 15.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

TooManyFields

Since: 0.1

Classes that have too many fields could be redesigned to have fewer fields, possibly through some nested object grouping of some of the information. For example, a class with city/state/zip fields could instead have one Address field.

Example

class Person {
   protected $one;
   private $two;
   private $three;
   [... many more fields ...]
}

Source https://phpmd.org/rules/codesize.html#toomanyfields

Avoid unused private fields such as '$cs_cancel'.
Open

  private $cs_cancel;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_first_payment'.
Open

  private $cs_first_payment;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_email'.
Open

  private $cs_email;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_orderdetails'.
Open

  private $cs_orderdetails;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_free_total'.
Open

  private $cs_free_total;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_year'.
Open

  private $cs_year;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_header_registeration'.
Open

  private $cs_header_registeration;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_each_payment'.
Open

  private $cs_each_payment;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_phone'.
Open

  private $cs_phone;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_payments'.
Open

  private $cs_payments;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_mustfields'.
Open

  private $cs_mustfields;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_xparam'.
Open

  private $cs_xparam;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_cvv'.
Open

  private $cs_cvv;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_cardnumber'.
Open

  private $cs_cardnumber;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_eop_status_bad'.
Open

  private $cs_eop_status_bad;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_approval_no'.
Open

  private $cs_approval_no;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_token'.
Open

  private $cs_token;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_supported_cards'.
Open

  private $cs_supported_cards;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_eop_free_text'.
Open

  private $cs_eop_free_text;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_credit'.
Open

  private $cs_credit;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_voucher_no'.
Open

  private $cs_voucher_no;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_header_payment'.
Open

  private $cs_header_payment;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_id'.
Open

  private $cs_id;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_submit'.
Open

  private $cs_submit;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_paypal_btn'.
Open

  private $cs_paypal_btn;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_eop_goto_site'.
Open

  private $cs_eop_goto_site;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_month'.
Open

  private $cs_month;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_holdername'.
Open

  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_expiration'.
Open

  private $cs_expiration;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_total'.
Open

  private $cs_total;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_generaldetails'.
Open

  private $cs_generaldetails;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Avoid unused private fields such as '$cs_eop_status_good'.
Open

  private $cs_eop_status_good;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

UnusedPrivateField

Since: 0.2

Detects when a private field is declared and/or assigned a value, but not used.

Example

class Something
{
    private static $FOO = 2; // Unused
    private $i = 5; // Unused
    private $j = 6;
    public function addOne()
    {
        return $this->j++;
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedprivatefield

Remove this unused "$cs_first_payment" private field.
Open

  private $cs_first_payment;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_generaldetails" private field.
Open

  private $cs_generaldetails;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_eop_status_good" private field.
Open

  private $cs_eop_status_good;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_header_registeration" private field.
Open

  private $cs_header_registeration;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_xparam" private field.
Open

  private $cs_xparam;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_eop_status_bad" private field.
Open

  private $cs_eop_status_bad;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_voucher_no" private field.
Open

  private $cs_voucher_no;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_supported_cards" private field.
Open

  private $cs_supported_cards;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_month" private field.
Open

  private $cs_month;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_orderdetails" private field.
Open

  private $cs_orderdetails;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_cancel" private field.
Open

  private $cs_cancel;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_total" private field.
Open

  private $cs_total;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_approval_no" private field.
Open

  private $cs_approval_no;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_expiration" private field.
Open

  private $cs_expiration;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_header_payment" private field.
Open

  private $cs_header_payment;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_payments" private field.
Open

  private $cs_payments;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_phone" private field.
Open

  private $cs_phone;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_holdername" private field.
Open

  private $cs_holdername;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_cardnumber" private field.
Open

  private $cs_cardnumber;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_mustfields" private field.
Open

  private $cs_mustfields;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_each_payment" private field.
Open

  private $cs_each_payment;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_email" private field.
Open

  private $cs_email;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_credit" private field.
Open

  private $cs_credit;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_free_total" private field.
Open

  private $cs_free_total;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_cvv" private field.
Open

  private $cs_cvv;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_submit" private field.
Open

  private $cs_submit;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_eop_goto_site" private field.
Open

  private $cs_eop_goto_site;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_eop_free_text" private field.
Open

  private $cs_eop_free_text;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_id" private field.
Open

  private $cs_id;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_paypal_btn" private field.
Open

  private $cs_paypal_btn;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_year" private field.
Open

  private $cs_year;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Remove this unused "$cs_token" private field.
Open

  private $cs_token;
Severity: Major
Found in src/Pelecard/CaptionSet.php by sonar-php

If a private field is declared but not used in the program, it can be considered dead code and should therefore be removed. This will improve maintainability because developers will not wonder what the variable is used for.

Noncompliant Code Example

class MyClass {
  private $foo = 4;                       //foo is unused

  public function compute($a) {
    return $a * 4;
  }
}

Compliant Solution

class MyClass {

  public function compute($a) {
    return $a * 4;
  }
}

See

Avoid excessively long variable names like $cs_header_registeration. Keep variable name length under 20.
Open

  private $cs_header_registeration;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

Source https://phpmd.org/rules/naming.html#longvariable

The property $cs_total is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_free_total is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_header_payment is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_xparam is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_paypal_btn is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_email is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_year is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_mustfields is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_cardnumber is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_supported_cards is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_credit is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_cancel is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_first_payment is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_approval_no is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_orderdetails is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_generaldetails is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_voucher_no is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_holdername is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_expiration is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_phone is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_payments is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_eop_status_bad is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_each_payment is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_header_registeration is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_eop_free_text is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_month is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_id is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_cvv is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_eop_status_good is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_eop_goto_site is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_submit is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $cs_token is not named in camelCase.
Open

class CaptionSet {

  private $cs_header_payment;
  private $cs_header_registeration;
  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

There must be one blank line after the namespace declaration
Open

namespace Pelecard;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Opening brace of a class must be on the line after the definition
Open

class CaptionSet {
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

The closing brace for the class must go on the next line after the body
Open

}
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_header_registeration;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_holdername;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_cardnumber;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_id;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_free_total;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_payments;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_eop_goto_site;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_expiration;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_orderdetails;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_each_payment;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_cancel;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_eop_status_bad;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_header_payment;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_voucher_no;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Expected 1 newline at end of file; 0 found
Open

}
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_xparam;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_generaldetails;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_paypal_btn;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_mustfields;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_month;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_cvv;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_first_payment;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_approval_no;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_eop_status_good;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_eop_free_text;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_total;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_email;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_phone;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_credit;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_token;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_supported_cards;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_submit;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

Line indented incorrectly; expected 4 spaces, found 2
Open

  private $cs_year;
Severity: Minor
Found in src/Pelecard/CaptionSet.php by phpcodesniffer

There are no issues that match your filters.

Category
Status