【调度系统】广东民航医疗快线调度系统源代码
wanglizhong
2025-06-24 a51d070d364b0da8e5f8ea9203a6e50c8b4c0af3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php declare(strict_types=1);
 
namespace WeChatPay;
 
use GuzzleHttp\Promise\PromiseInterface;
use Psr\Http\Message\ResponseInterface;
 
/**
 * Chainable points the client interface for sending HTTP requests.
 */
trait BuilderTrait
{
    abstract public function getDriver(): ClientDecoratorInterface;
 
    /**
     * URI pathname
     *
     * @param string $seperator - The URI seperator, default is slash(`/`) character
     *
     * @return string - The URI string
     */
    abstract protected function pathname(string $seperator = '/'): string;
 
    /**
     * @inheritDoc
     */
    public function get(array $options = []): ResponseInterface
    {
        return $this->getDriver()->request('GET', $this->pathname(), $options);
    }
 
    /**
     * @inheritDoc
     */
    public function put(array $options = []): ResponseInterface
    {
        return $this->getDriver()->request('PUT', $this->pathname(), $options);
    }
 
    /**
     * @inheritDoc
     */
    public function post(array $options = []): ResponseInterface
    {
        return $this->getDriver()->request('POST', $this->pathname(), $options);
    }
 
    /**
     * @inheritDoc
     */
    public function patch(array $options = []): ResponseInterface
    {
        return $this->getDriver()->request('PATCH', $this->pathname(), $options);
    }
 
    /**
     * @inheritDoc
     */
    public function delete(array $options = []): ResponseInterface
    {
        return $this->getDriver()->request('DELETE', $this->pathname(), $options);
    }
 
    /**
     * @inheritDoc
     */
    public function getAsync(array $options = []): PromiseInterface
    {
        return $this->getDriver()->requestAsync('GET', $this->pathname(), $options);
    }
 
    /**
     * @inheritDoc
     */
    public function putAsync(array $options = []): PromiseInterface
    {
        return $this->getDriver()->requestAsync('PUT', $this->pathname(), $options);
    }
 
    /**
     * @inheritDoc
     */
    public function postAsync(array $options = []): PromiseInterface
    {
        return $this->getDriver()->requestAsync('POST', $this->pathname(), $options);
    }
 
    /**
     * @inheritDoc
     */
    public function patchAsync(array $options = []): PromiseInterface
    {
        return $this->getDriver()->requestAsync('PATCH', $this->pathname(), $options);
    }
 
    /**
     * @inheritDoc
     */
    public function deleteAsync(array $options = []): PromiseInterface
    {
        return $this->getDriver()->requestAsync('DELETE', $this->pathname(), $options);
    }
}