diff options
Diffstat (limited to 'framework/TApplication.php')
-rw-r--r-- | framework/TApplication.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/framework/TApplication.php b/framework/TApplication.php index 9ac9a8a0..7c9de44a 100644 --- a/framework/TApplication.php +++ b/framework/TApplication.php @@ -58,10 +58,16 @@ require_once(PRADO_DIR.'/Web/Services/TPageService.php'); * the application, the modules, the services, the parameters, and so on.
*
* Examples:
+ * - Create and run a Prado application:
* <code>
* $application=new TApplication($configFile);
* $application->run();
* </code>
+ * - The parsed application configuration file is cached.
+ * <code>
+ * $application=new TApplication($configFile,$cacheFile);
+ * $application->run();
+ * </code>
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Revision: $ $Date: $
|