root/components/codeInstrumentation/CodeInstrumentationMethod.class.php

5986
1
<?php
1
<?php
2
/**
2
/**
3
 * CodeInstrumentationMethod create the changed version of the code method
4
 * @package CodeInstrumentation
5
 */
6
7
/**
3
 * Class what in place of create the exactly code of some method,
8
 * Class what in place of create the exactly code of some method,
4
 * create a version of it what send a message to the code instrumentation
9
 * create a version of it what send a message to the code instrumentation
5
 * receiver before and after each call.
10
 * receiver before and after each call.
6
 *
11
 *
7
 * @author Thiago Henrique Ramos da Mata <thiago.henrique.mata@gmail.com>
12
 * @author Thiago Henrique Ramos da Mata <thiago.henrique.mata@gmail.com>
8
 * @package CodeInstrumentation
9
 */
13
 */
10
class CodeInstrumentationMethod extends CodeReflectionMethod
14
class CodeInstrumentationMethod extends CodeReflectionMethod
11
{
15
{
...
...
255
    }
259
    }
256
260
257
}
261
}
258
?>