You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- namespace App\Models;
-
- use App\Codes\SMSProvicer;
- use App\Models\Feature\ContractFeature;
- use App\Models\Feature\SMSSendOrderFeature;
- use Illuminate\Database\Eloquent\Relations\BelongsTo;
-
- class SMSProviderFourSMessageCommunication extends AppModel
- {
- use ContractFeature, SMSSendOrderFeature;
-
- public function getModelName(): string
- {
- return "FourSMessage通信実績";
- }
-
- public function getHistory(): ?HistoryModel
- {
- return null;
- }
- }
|