Class: dataReflectionParameter

Attributes:
Inherits:
Implements:

Contents:

Introduction

Attention
Attention: No description has been provided for this class.

Meta Data

Attention
Attention: There is no meta data for this class.

Constants

There are no constants defined for this class.

Properties

Methods

Also See

Attention
Attention: There are no additional references for this class.

Class Syntax

In file D:\oblib-core\php\oblib\dataReflection\dataReflection.class.php between lines 218 and 232.

<?php
 
    
class dataReflectionParameter extends dataObject
    
{
        function 
__construct (ReflectionParameter $objReflectionParameter)
        {
            
parent::__construct ('ReflectionParameter');
            
            
$this->___Push (new dataString ('Name'                        $objReflectionParameter->getName ()));
            
$this->___Push (new dataNumber ('Position'                    $objReflectionParameter->getPosition ()));
            
$this->___Push (new dataBoolean ('isArray'                    $objReflectionParameter->isArray ()));
            
$this->___Push (new dataBoolean ('allowsNull'                $objReflectionParameter->allowsNull ()));
            
$this->___Push (new dataBoolean ('isPassedByReference'        $objReflectionParameter->isPassedByReference ()));
            
$this->___Push (new dataBoolean ('isOptional'                $objReflectionParameter->isOptional ()));
            
$this->___Push (new dataBoolean ('isDefaultValueAvailable'    $objReflectionParameter->isDefaultValueAvailable ()));
        }
    }

?>