PHP Classes

File: QueryTemplatesParseVoid.php

Recommend this page to a friend!
  Classes of   Query Templates   QueryTemplatesParseVoid.php   Download  
File: QueryTemplatesParseVoid.php
Role: Class source
Content type: text/plain
Description: QueryTemplatesParseVoid.php
Class: Query Templates
Template engine using load, traverse and modify
Author: By
Last change:
Date: 15 years ago
Size: 585 bytes
 

Contents

Class file image Download
<?php
/**
 * Fake template parsing class.
 *
 * @access private
 * @package QueryTemplates
 * @author Tobiasz Cudnik <tobiasz.cudnik/gmail.com>
 * @license http://www.opensource.org/licenses/mit-license.php MIT License
 * @link http://code.google.com/p/querytemplates/
 */
class QueryTemplatesParseVoid {
    protected
$save;
    public function
__construct($save) {
       
$this->save = $save;
    }
    public function
__call($name, $arguments) {
        return
$this;
    }
    public function
save() {
        return
$this->save;
    }
    public function
__toString() {
        return
$this->save;
    }
}