campanda/commons-ensure-bundle
Composer 安装命令:
composer require campanda/commons-ensure-bundle
包简介
Symfony bundle with static helper functions for checking coding pre-/post-conditions
关键字:
README 文档
README
About
The Campanda Commons Ensure Bundle contains static helper functions for checking coding pre-/post-conditions. The check helps to fail early with a EnsureException in the case of missmatched assertions with a meaningful sprintf format message. In comparison to PHP's assert() command, the ensure checks are always enabled.
The Campanda Commons Ensure Bundle is licensed under the LGPL license version 3.0 (http://www.gnu.org/licenses/lgpl-3.0.html).
Installation
- Add the bundle to your composer.json and download a matching version by calling
composer require campanda/common-ensure-bundle
Prerequisite: Install Composer, the dependency manager used by modern PHP applications.
Usage
The following code shows some simple method call using the Ensure Bundle.
<?php
use campanda\Commons\EnsureBundle\Ensure;
class Foo {
private $name;
public function bar($entityName, $num) {
$this->name = Ensure::isNotEmpty($entityName, 'entityName must not be empty');
Ensure::isGreaterThan(0, $num, 'num must be positive for entityName [%s]', $entityName);
// do some stuff...
}
}
Authors
- Marc Ewert marc.ewert@20steps.de
- Helmut Hoffer von Ankershoffen hhva@campanda.com
Sponsored by
统计信息
- 总下载量: 2.32k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: LGPL-3.0
- 更新时间: 2018-05-07