BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
app
/
Domains
/
Engine
📤 Upload
📝 New File
📁 New Folder
Close
Editing: BaseDriver.php
<?php declare(strict_types=1); namespace App\Domains\Engine; use App\Domains\Engine\Concerns\HasModel; use App\Domains\Engine\Contracts\EngineDriverInterface; use App\Domains\Engine\Contracts\WithModel; abstract class BaseDriver implements EngineDriverInterface, WithModel { use HasModel; public function label(): string { return $this->enum()->label(); } public function name(): string { return $this->enum()->value; } public function createDriverReqsIfNeeded(): static { return $this; } }
Save
Cancel