Skip to content
This repository has been archived by the owner on Jul 7, 2022. It is now read-only.

Function : __extends()

Blair2004 edited this page Oct 31, 2014 · 3 revisions

Description

This function extends passed parameter, by adding new methods herited from tendoo main class. His parameters should be a valid object or it will be converted to object.

Example

<?php class sample { function __construct() { __extends($this); // herits method from Main Controller } } ?>