root/components/codeReflection/_start.php
Author: blaine
File Size: 658 Bytes
(May 01, 2009 19:50 UTC) About 3 years ago
begin of the change to make possible to use the code to diagram by a external link. still has a problem with the public external css link to be solved.
<?php /** * Code Reflection Start * @package CodeReflection */ /** * Load the CodeReflection package * @author Thiago Henrique Ramos da Mata <thiago.henrique.mata@gmail.com> */ Loader::requireOnce( "CodeReflectionException.class.php" , true ); Loader::requireOnce( "CodeReflectionFile.class.php" , true ); Loader::requireOnce( "CodeReflectionParameter.class.php" , true ); Loader::requireOnce( "CodeReflectionProperty.class.php" , true ); Loader::requireOnce( "CodeReflectionFunction.class.php" , true ); Loader::requireOnce( "CodeReflectionMethod.class.php" , true ); Loader::requireOnce( "CodeReflectionClass.class.php" , true ); ?> |