Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 11 |
Ratio | 100 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php defined('BASEPATH') OR exit('No direct script access allowed'); |
||
6 | 1 | View Code Duplication | public function __construct() { |
7 | 1 | parent::__construct(); |
|
8 | |||
9 | 1 | $this->load->helper('cookie'); |
|
10 | |||
11 | 1 | $this->load->library('form_validation'); |
|
12 | 1 | $this->form_validation->set_error_delimiters( |
|
13 | 1 | $this->config->item('error_start_delimiter', 'ion_auth'), |
|
14 | 1 | $this->config->item('error_end_delimiter', 'ion_auth') |
|
15 | ); |
||
16 | 1 | } |
|
17 | |||
33 |