root/components/codeReflection/CodeReflectionParameter.class.php

1014
14
        if( $this->getClass() != null )
14
        if( $this->getClass() != null )
15
		{
15
		{
16
			$strCode .= $this->getClass()->getClassName() . " ";
16
			$strCode .= $this->getClass()->getClassName() . " ";
17
		} 
17
		}
18
*/
18
*/
19
		$strCode .= '$' . $this->getName();
19
		$strCode .= '$' . $this->getName();
20
20
...
...
24
		}
24
		}
25
		return $strCode;
25
		return $strCode;
26
	}
26
	}
27
	
27
28
    protected function createExtendedReflectionClass( ReflectionClass $objOriginalReflectionClass )
28
    protected function createExtendedReflectionClass( ReflectionClass $objOriginalReflectionClass )
29
	{
29
	{
30
		return new CodeReflectionClass( $objOriginalReflectionClass->getName() );
30
		return new CodeReflectionClass( $objOriginalReflectionClass->getName() );
31
	}
31
	}
32
	
32
33
	protected function createExtendedReflectionMethod( ReflectionMethod $objOriginalReflectionMethod )
33
	protected function createExtendedReflectionMethod( ReflectionMethod $objOriginalReflectionMethod )
34
	{
34
	{
35
		return new CodeReflectionMethod( $this->getName() , $objOriginalReflectionMethod->getName() );
35
		return new CodeReflectionMethod( $this->getName() , $objOriginalReflectionMethod->getName() );
36
	}
36
	}
37
	
37
38
	protected function createExtendedReflectionFunction( ReflectionFunction $objOriginalReflectionFunction )
38
	protected function createExtendedReflectionFunction( ReflectionFunction $objOriginalReflectionFunction )
39
	{
39
	{
40
		if( $objOriginalReflectionFunction instanceof ReflectionMethod )
40
		if( $objOriginalReflectionFunction instanceof ReflectionMethod )
41
		{
41
		{
42
			return new CodeReflectionMethod( $objOriginalReflectionFunction->getName() );	
42
			return new CodeReflectionMethod( $objOriginalReflectionFunction->getName() );
43
		}
43
		}
44
		else
44
		else
45
		{
45
		{