ACC SHELL
<?php
/**
* This file is part of the Nette Framework (http://nette.org)
* Copyright (c) 2004 David Grudl (http://davidgrudl.com)
*/
namespace Nette\DI\Config\Adapters;
use Nette;
/**
* Reading and generating PHP files.
*
* @author David Grudl
*/
class PhpAdapter extends Nette\Object implements Nette\DI\Config\IAdapter
{
/**
* Reads configuration from PHP file.
* @param string file name
* @return array
*/
public function load($file)
{
return require $file;
}
/**
* Generates configuration in PHP format.
* @return string
*/
public function dump(array $data)
{
return "<?php // generated by Nette \nreturn " . Nette\PhpGenerator\Helpers::dump($data) . ';';
}
}
ACC SHELL 2018