jeyroik/extas-values-self

There is no license information available for the latest version (0.1.0) of this package.

Self values for Extas

0.1.0 2020-05-22 11:44 UTC

This package is auto-updated.

Last update: 2024-10-22 22:09:17 UTC


README

PHP Composer codecov.io PHPStan Enabled

Описание

Позволяет ссылаться на другие значения сущности.

Использование

use extas\components\values\WithComplexValue;
$item = new class ([WithComplexValue::FIELD__VALUE => '@parent.name']) extends WithComplexValue {
    use \extas\components\THasName;
};

$item->setName('test');
$item['replaces'] = ['parent' => $item];
echo $item->buildValue($item->getValue()); // test