PHP 트레잇 AppserverIo\Appserver\Core\Api\Node\SystemPropertiesNodeTrait

파일 보기 프로젝트 열기: appserver-io/appserver

보호된 프로퍼티들

프로퍼티 타입 설명
$systemProperties array The system properties to use.

공개 메소드들

메소드 설명
getSystemProperties ( ) : array Array with the system properties to use.
getSystemPropertiesAsArray ( ) : array Returns the system properties casted to the defined type as associative array.
getSystemProperty ( string $name ) : mixed Returns the system property with the passed name casted to the specified type.
setSystemProperties ( array $systemProperties ) : void Array with the system properties to use.
setSystemProperty ( string $name, string $type, mixed $value ) : void Sets the system property with the passed name, type and value.

메소드 상세

getSystemProperties() 공개 메소드

Array with the system properties to use.
public getSystemProperties ( ) : array
리턴 array

getSystemPropertiesAsArray() 공개 메소드

Returns the system properties casted to the defined type as associative array.
public getSystemPropertiesAsArray ( ) : array
리턴 array The array with the casted system properties

getSystemProperty() 공개 메소드

Returns the system property with the passed name casted to the specified type.
public getSystemProperty ( string $name ) : mixed
$name string The name of the system property to be returned
리턴 mixed The requested system property casted to the specified type

setSystemProperties() 공개 메소드

Array with the system properties to use.
public setSystemProperties ( array $systemProperties ) : void
$systemProperties array The array with the system properties
리턴 void

setSystemProperty() 공개 메소드

Sets the system property with the passed name, type and value.
public setSystemProperty ( string $name, string $type, mixed $value ) : void
$name string The system property name
$type string The system property type
$value mixed The system property value
리턴 void

프로퍼티 상세

$systemProperties 보호되어 있는 프로퍼티

The system properties to use.
protected array $systemProperties
리턴 array