mirror of
https://github.com/wallabag/wallabag.git
synced 2025-09-15 18:57:05 +00:00
Migrate to constructor promoted properties
This commit is contained in:
parent
4168727f36
commit
1d5674a230
85 changed files with 441 additions and 854 deletions
|
@ -9,11 +9,9 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
|
|||
|
||||
class AuthenticatorProvider implements ExpressionFunctionProviderInterface
|
||||
{
|
||||
private HttpClientInterface $requestHtmlFunctionClient;
|
||||
|
||||
public function __construct(HttpClientInterface $requestHtmlFunctionClient)
|
||||
{
|
||||
$this->requestHtmlFunctionClient = $requestHtmlFunctionClient;
|
||||
public function __construct(
|
||||
private HttpClientInterface $requestHtmlFunctionClient,
|
||||
) {
|
||||
}
|
||||
|
||||
public function getFunctions(): array
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue