Completed
Push — master ( 53691c...15e6b6 )
by Marcel
01:44
created

AppProvider::findBySecret()

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
1
<?php
2
3
namespace BeyondCode\LaravelWebSockets\Apps;
4
5
interface AppProvider
6
{
7
    /**  @return array[BeyondCode\LaravelWebSockets\AppProviders\App] */
0 ignored issues
show
Documentation introduced by
The doc-type array[BeyondCode\Laravel...ckets\AppProviders\App] could not be parsed: Expected "]" at position 2, but found "BeyondCode\LaravelWebSockets\AppProviders\App". (view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
8
    public function all(): array;
9
10
    public function findById($appId): ?App;
11
12
    public function findByKey(string $appKey): ?App;
13
14
    public function findBySecret(string $appSecret): ?App;
15
}
16