__construct() public method

Class constructor
public __construct ( array $params = [] ) : void
$params array Configuration parameters
return void
コード例 #1
0
ファイル: MY_Encryption.php プロジェクト: puppylet/codecuibap
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     // Set cipher to blowfish by default
     $this->_cipher = 'blowfish';
 }