Migration_Driver_Exception_Params::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
nc 1
cc 1
eloc 2
nop 1
1
<?php defined('SYSPATH') OR die('No direct script access.');
2
3
class Migration_Driver_Exception_Params extends Migration_Exception
4
{
5
	public function __construct($illigal)
6
	{
7
		return parent::__construct("Illigal params :params", array(':params' => join(', ', (array) $illigal)));
0 ignored issues
show
Bug introduced by
Constructors do not have meaningful return values, anything that is returned from here is discarded. Are you sure this is correct?
Loading history...
8
	}
9
}
10