root/components/codeToDiagram/CodeToDiagram.class.php

5986
1
<?php
1
<?php
2
/**
2
/**
3
 * Code to diagram master class
3
 * CodeToDiagram - make the execution create a sequence diagram
4
 * @package CodeToDiagram
5
 */
6
7
/**
8
 * Code to diagram master class.
9
 * Take to itself the service of include and require. Make code instrumentation
10
 * of all the classes includes making this way possible to wacth some code execution.
4
 *
11
 *
5
 * @author Thiago Henrique Ramos da Mata <thiago.henrique.mata@gmail.com>
12
 * @author Thiago Henrique Ramos da Mata <thiago.henrique.mata@gmail.com>
6
 * @package CodeToDiagram
7
 */
13
 */
8
class CodeToDiagram
14
class CodeToDiagram
9
{
15
{
...
...
858
        
864
        
859
        return $this;
865
        return $this;
860
    }
866
    }
861
}
867
}
862
?>