peridot-php/peridot-scope
最新稳定版本:1.3.0
Composer 安装命令:
composer require peridot-php/peridot-scope
包简介
Scopes for function binding and mixins
README 文档
README
Peridot Scope.
Scopes allow safe binding of state for closures and offers a mechanism for mixing state and behavior in via child scopes.
Extracted from the Peridot testing framework.
##Usage
We recommend installing this package via composer:
$ composer require peridot-php/peridot-scope:~1.0
###Creating a Scope
$scope = new Scope(); $scope->name = "Brian"; $fnWithName = function() { print $this->name; }; $fnWithName = $scope->peridotBindTo($fnWithName); $fnWithName(); //prints "Brian"
###Using the ScopeTrait
If an existing class can benefit from a Scope, you can use the ScopeTrait
class Test { use ScopeTrait; protected $definition; public function __construct(callable $definition) { $this->definition = $definition; } /** * Return the definition bound to a scope */ public function getDefinition() { $scope = $this->getScope(); return $scope->peridotBindTo($this->definition); } }
##Mixins
You can mix behavior in via child scopes.
统计信息
- 总下载量: 224.1k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-11-14