18 lines
306 B
PHP
18 lines
306 B
PHP
<?php
|
|
|
|
namespace App\Http\Livewire;
|
|
|
|
use App\Game\GameService;
|
|
|
|
use Livewire\Component;
|
|
|
|
abstract class GameComponent extends Component
|
|
{
|
|
/**
|
|
* Get the game service object
|
|
*/
|
|
public function getServiceProperty() : GameService
|
|
{
|
|
return app()->make(GameService::class);
|
|
}
|
|
}
|