brilliantpackages/laravel-fmerrorhelper
Composer 安装命令:
composer require brilliantpackages/laravel-fmerrorhelper
包简介
A package to convert FileMaker Pro error codes to standard HTTP status codes and messages.
README 文档
README
This is a service provider for Laravel/Lumen to convert FileMaker Pro error codes to standard HTTP status codes and messages.
Installation
Run composer require brilliantpackages/laravel-fmerrorhelper.
Lumen
Add this line to bootstrap/app.php to register the service provider:
$app->register(BrilliantPackages\LaravelFmErrorHelper\LaravelFmErrorHelperServiceProvider::class);
Usage
This package should auto-register itself and the FMError facade for use.
Method 1: Use the facade:
FMError::getErrorCode($fmCode, $fallback);
Method 2:
Include the namespace at the top of the file:
use BrilliantPackages\LaravelFmErrorHelper\Helper as FMError; # Use the getErrorCode/getErrorMessage function as needed: $code = FMError::getErrorCode($fmCode, $fallback); $message = FMError::getErrorMessage($fmCode, $fallback);
统计信息
- 总下载量: 600
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-05-13