31 lines
535 B
PHP
31 lines
535 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Actions\Print\PrintCards;
|
|
use App\Actions\Print\QuarterPageCards;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
/**
|
|
* @codeCoverageIgnore
|
|
*/
|
|
// TODO: Consider testing later
|
|
class PrintCardActionProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register services.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
$this->app->singleton(PrintCards::class, QuarterPageCards::class);
|
|
}
|
|
|
|
/**
|
|
* Bootstrap services.
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
//
|
|
}
|
|
}
|