* @param $value The value to store in the variable
* @return void
*/
- function assignVariable ($var, $value) {
+ public final function assignVariable ($var, $value) {
// Empty stub!
trigger_error(__METHOD__.": Stub!");
}
*
* @return void
*/
- function output ($outStream=false) {
+ public final function output ($outStream=false) {
+ // Empty output will be silently ignored
if ($outStream !== false) {
$this->outputStream($outStream);
}
* @param $value The value to store in the variable
* @return void
*/
- function assignVariable ($var, $value) {
+ public final function assignVariable ($var, $value) {
// Empty stub!
trigger_error(__METHOD__.": Stub!");
}
*
* @return void
*/
- function output ($outStream=false) {
+ public final function output ($outStream=false) {
+ // Empty output will be silently ignored
if ($outStream !== false) {
$this->outputStream($outStream);
}
* @param $value The value to store in the variable
* @return void
*/
- function assignVariable ($var, $value) {
+ public final function assignVariable ($var, $value) {
// Empty stub!
trigger_error(__METHOD__.": Stub!");
}
*
* @return void
*/
- function output ($outStream=false) {
+ public final function output ($outStream=false) {
+ // Empty output will be silently ignored
if ($outStream !== false) {
$this->outputStream($outStream);
}
<?php
/**
- * Prepares a local file datbase
+ * Initializes the local file database class
*
* @author Roland Haeder <webmaster@mxchange.org>
* @version 0.3.0
<?php
/**
- * Load required include files
+ * Loads more include files by using the generic class loader
*
* @author Roland Haeder <webmaster@mxchange.org>
* @version 0.3.0
<?php
/**
- * Prepares the (debug) output system
+ * Initializes the output middleware layer
*
* @author Roland Haeder <webmaster@mxchange.org>
* @version 0.3.0