Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion framework/core/src/Extend/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
use Flarum\Extension\Extension;
use Flarum\Foundation\AbstractServiceProvider;
use Illuminate\Contracts\Container\Container;
use Illuminate\Support\ServiceProvider as LaravelServiceProvider;

class ServiceProvider implements ExtenderInterface
{
Expand All @@ -24,7 +25,7 @@ class ServiceProvider implements ExtenderInterface
* Please read our documentation about service providers for recommendations.
* @see https://docs.flarum.org/extend/service-provider/
*
* @param class-string<AbstractServiceProvider> $serviceProviderClass The ::class attribute of the service provider class.
* @param class-string<AbstractServiceProvider|LaravelServiceProvider> $serviceProviderClass The ::class attribute of the service provider class.
*/
public function register(string $serviceProviderClass): self
{
Expand Down
Loading