mirror of
https://github.com/getgrav/grav.git
synced 2025-02-20 19:56:53 +01:00
29 lines
612 B
PHP
29 lines
612 B
PHP
<?php
|
|
/**
|
|
* @package Grav\Framework\File
|
|
*
|
|
* @copyright Copyright (C) 2015 - 2018 Trilby Media, LLC. All rights reserved.
|
|
* @license MIT License; see LICENSE file for details.
|
|
*/
|
|
|
|
namespace Grav\Framework\File;
|
|
|
|
use Grav\Framework\File\Formatter\IniFormatter;
|
|
|
|
/**
|
|
* Class IniFile
|
|
* @package RocketTheme\Toolbox\File
|
|
*/
|
|
class IniFile extends DataFile
|
|
{
|
|
/**
|
|
* File constructor.
|
|
* @param string $filepath
|
|
* @param IniFormatter $formatter
|
|
*/
|
|
public function __construct($filepath, IniFormatter $formatter)
|
|
{
|
|
parent::__construct($filepath, $formatter);
|
|
}
|
|
}
|