Reflection/Class.php
Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled
with this package in the file LICENSE.txt.
It is also available through the world-wide-web at this URL:
http://framework.zend.com/license/new-bsd
If you did not receive a copy of the license and are unable to
obtain it through the world-wide-web, please send an email
to license@zend.com so we can send you a copy immediately.
- Category
- Zend
- Copyright
- Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
- Package
- Zend_Reflection
- Version
- $Id$
Package: Zend_Reflection- Parent(s)
- \ReflectionClass
- Category
- Zend
- Copyright
- Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
Methods
getContents(bool $includeDocblock = true) : string
Return the contents of the class
ParametersName | Type | Description |
---|
$includeDocblock | bool | |
---|
Returns getDeclaringFile( $reflectionClass = 'Zend_Reflection_File') : \Zend_Reflection_File
Return the reflection file of the declaring file.
ParametersName | Type | Description |
---|
$reflectionClass | | |
---|
Returns getDocblock(string $reflectionClass = 'Zend_Reflection_Docblock') : \Zend_Reflection_Docblock
Return the classes Docblock reflection object
ParametersName | Type | Description |
---|
$reflectionClass | string | Name of reflection class to use |
---|
ReturnsThrows getInterfaces(string $reflectionClass = 'Zend_Reflection_Class') : array
Get all reflection objects of implemented interfaces
ParametersName | Type | Description |
---|
$reflectionClass | string | Name of reflection class to use |
---|
ReturnsType | Description |
---|
array | Array of Zend_Reflection_Class |
getMethod(string $name, string $reflectionClass = 'Zend_Reflection_Method') : \Zend_Reflection_Method
Return method reflection by name
ParametersName | Type | Description |
---|
$name | string | |
---|
$reflectionClass | string | Reflection class to utilize |
---|
Returns getMethods(string $filter = -1, string $reflectionClass = 'Zend_Reflection_Method') : array
Get reflection objects of all methods
ParametersName | Type | Description |
---|
$filter | string | |
---|
$reflectionClass | string | Reflection class to use for methods |
---|
ReturnsType | Description |
---|
array | Array of Zend_Reflection_Method objects |
getParentClass(string $reflectionClass = 'Zend_Reflection_Class') : \Zend_Reflection_Class
Get parent reflection class of reflected class
ParametersName | Type | Description |
---|
$reflectionClass | string | Name of Reflection class to use |
---|
Returns getProperties(int $filter = -1, string $reflectionClass = 'Zend_Reflection_Property') : array
Return reflection properties of this class
ParametersName | Type | Description |
---|
$filter | int | |
---|
$reflectionClass | string | Name of reflection class to use |
---|
ReturnsType | Description |
---|
array | Array of Zend_Reflection_Property |
getProperty(string $name, string $reflectionClass = 'Zend_Reflection_Property') : \Zend_Reflection_Property
Return reflection property of this class by name
ParametersName | Type | Description |
---|
$name | string | |
---|
$reflectionClass | string | Name of reflection class to use |
---|
Returns getStartLine(bool $includeDocComment = false) : int
Return the start line of the class
ParametersName | Type | Description |
---|
$includeDocComment | bool | |
---|
Returns