mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-17 12:28:24 +00:00
9d3b3a72ce
Adding a test case.
37 lines
No EOL
971 B
PHP
37 lines
No EOL
971 B
PHP
<?php
|
|
/**
|
|
* IniFile
|
|
*
|
|
* PHP 5
|
|
*
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
*
|
|
* Licensed under The MIT License
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
|
* @package cake
|
|
* @subpackage cake.cake.libs.controller.components
|
|
* @since CakePHP(tm) v 2.0
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
*/
|
|
|
|
/**
|
|
* Ini file configuration parser.
|
|
*
|
|
* @package cake.config
|
|
*/
|
|
class IniFile {
|
|
|
|
/**
|
|
* Build and construct a new ini file parser, the parser will be a representation of the ini
|
|
* file as an object.
|
|
*
|
|
* @param string $filename Full path to the file to parse.
|
|
*/
|
|
public function __construct($filename) {
|
|
|
|
}
|
|
} |