mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-11 18:56:42 +02:00
refactor: add modules folder to phpstan paths + fix errors
This commit is contained in:
parent
7a6d9df6db
commit
bb628f355f
166 changed files with 452 additions and 526 deletions
|
|
@ -142,9 +142,10 @@ class HttpSignature
|
|||
$strings[] = sprintf(
|
||||
'(request-target): %s %s%s',
|
||||
$this->request->getMethod(),
|
||||
'/' . $this->request->uri->getPath(),
|
||||
$this->request->uri->getQuery() !== ''
|
||||
? '?' . $this->request->uri->getQuery()
|
||||
'/' . $this->request->getUri()->getPath(),
|
||||
$this->request->getUri()
|
||||
->getQuery() !== ''
|
||||
? '?' . $this->request->getUri()->getQuery()
|
||||
: '',
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue