1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-06-05 22:09:38 +02:00

Correzioni minori e aggiornamento a Laravel 9

This commit is contained in:
Thomas Zilio
2022-03-02 12:19:52 +01:00
parent 990ed0475f
commit 279fe2eca9
47 changed files with 3774 additions and 83 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace App\LaravelGettext\Exceptions;
use Exception;
class DirectoryNotFoundException extends Exception
{
}

View File

@@ -0,0 +1,10 @@
<?php
namespace App\LaravelGettext\Exceptions;
use Exception;
class FileCreationException extends Exception
{
}

View File

@@ -0,0 +1,10 @@
<?php
namespace App\LaravelGettext\Exceptions;
use Exception;
class LocaleFileNotFoundException extends Exception
{
}

View File

@@ -0,0 +1,10 @@
<?php
namespace App\LaravelGettext\Exceptions;
use Exception;
class LocaleNotSupportedException extends Exception
{
}

View File

@@ -0,0 +1,10 @@
<?php
namespace App\LaravelGettext\Exceptions;
use Exception;
class MissingPhpGettextModuleException extends Exception
{
}

View File

@@ -0,0 +1,10 @@
<?php
namespace App\LaravelGettext\Exceptions;
use Exception;
class RequiredConfigurationFileException extends Exception
{
}

View File

@@ -0,0 +1,10 @@
<?php
namespace App\LaravelGettext\Exceptions;
use Exception;
class RequiredConfigurationKeyException extends Exception
{
}

View File

@@ -0,0 +1,10 @@
<?php
namespace App\LaravelGettext\Exceptions;
use Exception;
class UndefinedDomainException extends Exception
{
}