Componere\Definition::addConstant
PHP Manual
PHP Manual»Componere\Definition»Componere\Definition::addConstant

Componere\Definition::addConstant

(Componere 2 >= 2.1.0)

Componere\Definition::addConstantAdd Constant

Опис

public function Componere\Definition::addConstant(string $name, Componere\Value $value): Definition

Shall declare a class constant on the current Definition

Параметри

name
The case sensitive name for the constant
value
The Value for the constant, must not be undefined or static

Значення, що повертаються

The current Definition

Exceptions

Увага

Shall throw RuntimeException if Definition was registered

Увага

Shall throw RuntimeException if name is already declared as a constant

Увага

Shall throw RuntimeException if value is static

Увага

Shall throw RuntimeException if value is undefined

To Top