| Total Complexity | 3 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class PaymentMeanBrandList { |
||
| 16 | /** |
||
| 17 | * List |
||
| 18 | * |
||
| 19 | * @var array |
||
| 20 | */ |
||
| 21 | private $list; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Constructs and initialize a payment methods list |
||
| 25 | * |
||
| 26 | * @parm array $list |
||
| 27 | */ |
||
| 28 | 2 | public function __construct( array $list = array() ) { |
|
| 29 | 2 | $this->list = $list; |
|
| 30 | 2 | } |
|
| 31 | |||
| 32 | /** |
||
| 33 | * Add payment method |
||
| 34 | * |
||
| 35 | * @param string $payment_mean_brand |
||
| 36 | */ |
||
| 37 | 1 | public function add_payment_mean_brand( $payment_mean_brand ) { |
|
| 39 | 1 | } |
|
| 40 | |||
| 41 | /** |
||
| 42 | * Create a string representation of this payment mean brand list |
||
| 43 | * |
||
| 44 | * @return string |
||
| 45 | */ |
||
| 46 | 2 | public function __toString() { |
|
| 48 | } |
||
| 49 | } |
||
| 50 |