root/components/codeInstrumentation/CodeInstrumentationReceiver.class.php

5986
1
<?php
1
<?php
2
/**
2
/**
3
 * CodeInstrumentationReceiver create the messages receive
4
 * @package CodeInstrumentation
5
 */
6
7
/**
3
 * Class create to make possible the creation of code instrumentation of executions.
8
 * Class create to make possible the creation of code instrumentation of executions.
4
 * 
9
 * 
5
 * It receive the messages of enter methods and leave methods, into what object, of what class
10
 * It receive the messages of enter methods and leave methods, into what object, of what class
...
...
13
 * @see CodeInstrumentationMethod
18
 * @see CodeInstrumentationMethod
14
 * @see CodeInstrumentationClass
19
 * @see CodeInstrumentationClass
15
 * @author Thiago Henrique Ramos da Mata <thiago.henrique.mata@gmail.com>
20
 * @author Thiago Henrique Ramos da Mata <thiago.henrique.mata@gmail.com>
16
 * @package CodeInstrumentation
17
 *
18
 */
21
 */
19
class CodeInstrumentationReceiver
22
class CodeInstrumentationReceiver
20
{
23
{
...
...
453
        return $this;
456
        return $this;
454
    }
457
    }
455
}
458
}
456
?>