laravel-interaction/interactions

View on GitHub
packages/favorite/src/FavoriteServiceProvider.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

declare(strict_types=1);

namespace LaravelInteraction\Favorite;

use LaravelInteraction\Support\InteractionList;
use LaravelInteraction\Support\InteractionServiceProvider;

class FavoriteServiceProvider extends InteractionServiceProvider
{
    /**
     * @var string
     */
    protected $interaction = InteractionList::FAVORITE;
}