BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
datlechin
/
laravel-google-translate
/
src
/
Facades
📤 Upload
📝 New File
📁 New Folder
Close
Editing: GoogleTranslate.php
<?php namespace Datlechin\GoogleTranslate\Facades; use Illuminate\Support\Facades\Facade; /** * @method static \Datlechin\GoogleTranslate\GoogleTranslate source(string $source) * @method static \Datlechin\GoogleTranslate\GoogleTranslate target(string $target) * @method static \Datlechin\GoogleTranslate\GoogleTranslate withSource(string $source) * @method static \Datlechin\GoogleTranslate\GoogleTranslate withTarget(string $target) * @method static \Datlechin\GoogleTranslate\GoogleTranslateResult translate(string $text, string|null $source = null, string|null $target = null) * * @see \Datlechin\GoogleTranslate\GoogleTranslate */ class GoogleTranslate extends Facade { protected static function getFacadeAccessor(): string { return \Datlechin\GoogleTranslate\GoogleTranslate::class; } }
Save
Cancel