root/components/codeInstrumentation/CodeInstrumentationParameter.class.php

5986
1
<?php
1
<?php
2
/**
2
/**
3
 * CodeInstrumentationParameter create the changed version of the code parameter
4
 * @package CodeInstrumentation
5
 */
6
7
/**
3
 * Class what make possible the code instrumentation of methods and fucntions
8
 * Class what make possible the code instrumentation of methods and fucntions
4
 * with parameters
9
 * with parameters
5
 * 
10
 * 
6
 * @author Thiago Henrique Ramos da Mata <thiago.henrique.mata@gmail.com>
11
 * @author Thiago Henrique Ramos da Mata <thiago.henrique.mata@gmail.com>
7
 * @package CodeInstrumentation
8
 * 
12
 * 
9
 */
13
 */
10
class CodeInstrumentationParameter extends CodeReflectionParameter
14
class CodeInstrumentationParameter extends CodeReflectionParameter
...
...
52
        }
56
        }
53
    }
57
    }
54
}
58
}
55
56
?>