Introduced new Data Transfer Objects (DTOs), exceptions, and jobs to enhance the translation service functionality. Updated namespaces for consistency and added rate limiting to the translation provider. Expanded the README with detailed usage instructions.
10 lines
162 B
PHP
10 lines
162 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace KorElf\TranslateLaravel\Exceptions;
|
|
|
|
use RuntimeException;
|
|
|
|
final class TranslateException extends RuntimeException
|
|
{
|
|
|
|
} |