grav/system/src/Grav/Common/File/CompiledYamlFile.php

22 lines
388 B
PHP
Raw Normal View History

<?php
2019-01-31 09:04:57 +01:00
2016-07-12 00:07:14 +02:00
/**
2019-01-31 09:04:57 +01:00
* @package Grav\Common\File
2016-07-12 00:07:14 +02:00
*
2023-01-02 19:09:32 +01:00
* @copyright Copyright (c) 2015 - 2023 Trilby Media, LLC. All rights reserved.
2016-07-12 00:07:14 +02:00
* @license MIT License; see LICENSE file for details.
*/
namespace Grav\Common\File;
use RocketTheme\Toolbox\File\YamlFile;
/**
* Class CompiledYamlFile
* @package Grav\Common\File
*/
class CompiledYamlFile extends YamlFile
{
use CompiledFile;
}