OrgSupportersNotification::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 1 Features 1
Metric Value
eloc 1
c 2
b 1
f 1
dl 0
loc 3
rs 10
cc 1
nc 1
nop 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