<?php declare(strict_types=1); namespace App\Core\Payment\Application; use App\GatewayPayment; class PaymentGatewayService { public function find($id) { return GatewayPayment::findOrFail($id); } }