3 * Overload abstraction interface. Merges differences between PHP4 and 5.
7 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
8 * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
10 * Licensed under The MIT License
11 * Redistributions of files must retain the above copyright notice.
13 * @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
14 * @link http://cakephp.org CakePHP(tm) Project
16 * @subpackage cake.cake.libs
17 * @since CakePHP(tm) v 1.2
18 * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
22 * Overloadable class selector
25 * @subpackage cake.cake.libs
29 * Load the interface class based on the version of PHP.
33 require(LIBS
. 'overloadable_php4.php');
35 require(LIBS
. 'overloadable_php5.php');