1
0
mirror of https://github.com/flarum/core.git synced 2025-08-19 06:41:44 +02:00

chore: Setup PHPStan Level 5 (#3553)

This commit is contained in:
Sami Mazouz
2022-09-14 15:23:56 +01:00
committed by GitHub
parent b2fa28e4b5
commit fc4d5e3d43
206 changed files with 932 additions and 10882 deletions

View File

@@ -0,0 +1,7 @@
<?php
namespace Illuminate\Contracts\Container;
interface Container
{
}

View File

@@ -0,0 +1,7 @@
<?php
namespace Illuminate\Contracts\Filesystem;
interface Cloud extends Filesystem
{
}

View File

@@ -0,0 +1,14 @@
<?php
namespace Illuminate\Contracts\Filesystem;
interface Factory
{
/**
* Get a filesystem implementation.
*
* @param string|null $name
* @return Cloud
*/
public function disk($name = null);
}

View File

@@ -0,0 +1,7 @@
<?php
namespace Illuminate\Contracts\Filesystem;
interface Filesystem
{
}