Lime\Helper\Filesystem::write PHP Method

write() public method

public write ( )
    public function write()
    {
        $args = func_get_args();
        if (!count($args)) {
            return false;
        }
        $args[0] = $this->app->path($args[0]);
        return call_user_func_array('file_put_contents', $args);
    }