wearesho-team/

yii2-monitoring-fs

1.0.1 2022-12-02 14:07 UTC

This package is auto-updated.

Last update: 2024-08-30 01:23:20 UTC


README

Tests & Lint Latest Stable Version Total Downloads codecov

安装

composer require wearesho-team/yii2-monitoring-fs

使用

创建 Fs 类的实例并将其放入你的文件系统适配器中。

控制台控制器中的简单使用示例

<?php

use Wearesho\Yii\Monitoring;

class MonitoringController extends \yii\console\Controller
{
    public function actionIndex()
    {
        /** @var \Wearesho\Yii\Filesystem\AdapterInterface $adapter */
        
        $control = new Monitoring\Control\Fs([
            'fs' => $adapter,
            'client' => new \GuzzleHttp\Client(),
        ]);
        
        try {
            $details = $control->execute();
        } catch (\Horat1us\Yii\Monitoring\Exception $exception) {
            $this->stdout($exception->getMessage());
        }
    }
}

作者

许可