summaryrefslogtreecommitdiffstats
path: root/tests/mocks/libraries/encrypt.php
blob: c14d1e02ffa294f56624235819a96e5fa5fa8483 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

class Mock_Libraries_Encrypt extends CI_Encrypt {

	// Override inaccessible protected method
	public function __call($method, $params)
	{
		if (is_callable(array($this, '_'.$method)))
		{
			return call_user_func_array(array($this, '_'.$method), $params);
		}

		throw new BadMethodCallException('Method '.$method.' was not found');
	}

}