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

src/Apps/AppProvider.php (1 issue)

Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace BeyondCode\LaravelWebSockets\Apps;
4
5
interface AppProvider
6
{
7
    /**  @return array[BeyondCode\LaravelWebSockets\AppProviders\App] */
0 ignored issues
show
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