PHP Трейт AppserverIo\Appserver\Core\Api\Node\SystemPropertiesNodeTrait

Автор: Tim Wagner ([email protected])
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
$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