Files
huangjingfen/pro_v3.5.1/vendor/topthink/think-swoole/src/resetters/ClearInstances.php

24 lines
534 B
PHP
Raw Normal View History

<?php
namespace think\swoole\resetters;
use think\App;
use think\swoole\contract\ResetterInterface;
use think\swoole\Sandbox;
class ClearInstances implements ResetterInterface
{
public function handle(App $app, Sandbox $sandbox)
{
$instances = ['log', 'session', 'view', 'response', 'cookie'];
$instances = array_merge($instances, $sandbox->getConfig()->get('swoole.instances', []));
foreach ($instances as $instance) {
$app->delete($instance);
}
return $app;
}
}