123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * Created by PhpStorm.
- * User: yf
- * Date: 2019-01-06
- * Time: 23:27
- */
- namespace EasySwoole\Component\Tests\Lib;
- use EasySwoole\Component\Context\ContextItemHandlerInterface;
- class ContextContextItemHandler implements ContextItemHandlerInterface
- {
- function onContextCreate()
- {
- // TODO: Implement onContextCreate() method.
- $stdClass = new \stdClass();
- $stdClass->text = 'handler';
- return $stdClass;
- }
- function onDestroy($context)
- {
- // TODO: Implement onDestroy() method.
- $context->destroy = true;
- }
- }
|