OrgSupportersNotification   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 2
Bugs 1 Features 1
Metric Value
wmc 1
eloc 3
c 2
b 1
f 1
dl 0
loc 10
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace ByTIC\Notifier\Tests\Fixtures\Notifications\Fundraising_Pages\Pending;
4
5
/**
6
 * Class OrgSupportersNotification
7
 * @package ByTIC\Notifier\Tests\Fixtures\Notifications\Fundraising_Pages\Pending
8
 */
9
class OrgSupportersNotification extends \ByTIC\Notifications\Notification
10
{
11
    public $param;
12
13
    /**
14
     * @inheritdoc
15
     */
16
    public function __construct($param = null)
17
    {
18
        $this->param = $param;
19
    }
20
}
21