mirror of
https://github.com/adlawson/php-vfs.git
synced 2025-04-11 02:51:51 +00:00
24 lines
464 B
PHP
24 lines
464 B
PHP
<?php
|
|
/*
|
|
* This file is part of VFS
|
|
*
|
|
* Copyright (c) 2015 Andrew Lawson <http://adlawson.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
namespace Vfs\Node;
|
|
|
|
interface FileInterface extends NodeInterface
|
|
{
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getContent();
|
|
|
|
/**
|
|
* @param string $content
|
|
*/
|
|
public function setContent($content);
|
|
}
|