fangx/hyperf-cookie

hyperf cookie 支持

v3.2.0 2021-07-19 06:41 UTC

This package is auto-updated.

Last update: 2024-09-19 13:54:55 UTC


README

在 hyperf 中增强 cookie 功能

安装

composer require fangx/hyperf-cookie

用法

<?php
namespace App\Services;

use Hyperf\Di\Annotation\Inject;

class Demo
{
  /**
   * @Inject
   * @var \Fangx\Cookie\Contracts\QueueingFactory
   */
  protected $cookie;
  
  public function demo()
  {
    //
  }
}