php-libs/value-states
Composer 安装命令:
composer require php-libs/value-states
包简介
Extends php-libs/observer to track if a values have been initialized or modified (changed after initialization)
README 文档
README
This package contains a simple set of classes to facilitate adding observers to property methods.
Features
-
Execute
callablebefore any value changes -
Execute
callablebefore specific values change -
Execute
callableafter any value changes -
Execute
callableafter specific values change
Quick Start
Install
composer require php-libs/observable
Example Class Without Observable Properties
class MyClass { private ?string $propertyA = null; private ?string $propertyB = null; public function setPropertyA(string $value) { $this->propertyA = $value; } public function setPropertyB(string $value) { $this->propertyB = $value; } }
Example Class With Observable Properties
class MyClass implements \PhpLibs\Observable\BeforeValueChangeObservableInterface { private const PROPERTY_A = 'propertyA'; private const PROPERTY_B = 'propertyB'; use PhpLibs\Observable\BeforeValueChangeObservableTrait; use PhpLibs\Observable\AfterValueChangeObservableTrait; private ?string $propertyA = null; private ?string $propertyB = null; public function setPropertyA(string $value) { $this->raiseBeforeValueChange(static::PROPERTY_A, $this->propertyA, $value); $this->propertyA = $value; $this->raiseAfterValueChange(static::PROPERTY_A, $this->propertyA); } public function setPropertyB(string $value) { $this->raiseBeforeValueChange(static::PROPERTY_B, $this->propertyB, $value); $this->propertyB = $value; $this->raiseAfterValueChange(static::PROPERTY_B, $this->propertyB); } }
Full Example
Please see example.php
Which outputs as follows:
propertyA WILL CHANGE from "" to "A-1"
propertyB WILL CHANGE from "" to "B-1"
Begin observing After B Changed
propertyA WILL CHANGE from "A-1" to "A-2"
propertyB WILL CHANGE from "B-1" to "B-2"
propertyB CHANGED to "B-2"
End observing After B Changed
propertyA WILL CHANGE from "A-2" to "A-3"
propertyB WILL CHANGE from "B-2" to "B-3"
统计信息
- 总下载量: 110
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-05-13