import v2.0.0.0_RC3 | 2012-07-01
https://github.com/lucanos/CommunityID -> http://www.itadmins.net/archives/357
This commit is contained in:
@ -16,7 +16,7 @@
|
||||
* @package Zend_Reflection
|
||||
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id: Class.php 16971 2009-07-22 18:05:45Z mikaelkael $
|
||||
* @version $Id: Class.php 18951 2009-11-12 16:26:19Z alexander $
|
||||
*/
|
||||
|
||||
/**
|
||||
@ -56,7 +56,7 @@ class Zend_Reflection_Class extends ReflectionClass
|
||||
}
|
||||
return $instance;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Return the classes Docblock reflection object
|
||||
*
|
||||
@ -78,7 +78,7 @@ class Zend_Reflection_Class extends ReflectionClass
|
||||
}
|
||||
return $instance;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Return the start line of the class
|
||||
*
|
||||
@ -92,10 +92,10 @@ class Zend_Reflection_Class extends ReflectionClass
|
||||
return $this->getDocblock()->getStartLine();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
return parent::getStartLine();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Return the contents of the class
|
||||
*
|
||||
@ -108,10 +108,10 @@ class Zend_Reflection_Class extends ReflectionClass
|
||||
$filelines = file($filename);
|
||||
$startnum = $this->getStartLine($includeDocblock);
|
||||
$endnum = $this->getEndLine() - $this->getStartLine();
|
||||
|
||||
|
||||
return implode('', array_splice($filelines, $startnum, $endnum, true));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get all reflection objects of implemented interfaces
|
||||
*
|
||||
@ -134,7 +134,7 @@ class Zend_Reflection_Class extends ReflectionClass
|
||||
unset($phpReflections);
|
||||
return $zendReflections;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Return method reflection by name
|
||||
*
|
||||
@ -220,7 +220,7 @@ class Zend_Reflection_Class extends ReflectionClass
|
||||
unset($phpReflection);
|
||||
return $zendReflection;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Return reflection properties of this class
|
||||
*
|
||||
|
Reference in New Issue
Block a user