Skip to content

Commit

Permalink
Rename App\ namespace to Arbify"
Browse files Browse the repository at this point in the history
  • Loading branch information
Albert221 committed May 28, 2020
1 parent 9016d4e commit 0f06453
Show file tree
Hide file tree
Showing 128 changed files with 365 additions and 366 deletions.
8 changes: 4 additions & 4 deletions app/Arb/ArbFormatter.php
Expand Up @@ -2,11 +2,11 @@

declare(strict_types=1);

namespace App\Arb;
namespace Arbify\Arb;

use App\Contracts\Arb\ArbFormatter as ArbFormatterContract;
use App\Models\Message;
use App\Models\MessageValue;
use Arbify\Contracts\Arb\ArbFormatter as ArbFormatterContract;
use Arbify\Models\Message;
use Arbify\Models\MessageValue;
use Carbon\Carbon;
use Exception;
use Illuminate\Support\Collection;
Expand Down
16 changes: 8 additions & 8 deletions app/Arb/Exporter/ArbExporter.php
Expand Up @@ -2,14 +2,14 @@

declare(strict_types=1);

namespace App\Arb\Exporter;

use App\Contracts\Arb\ArbExporter as ArbExporterContract;
use App\Contracts\Arb\ArbFormatter;
use App\Contracts\Repositories\MessageRepository;
use App\Contracts\Repositories\MessageValueRepository;
use App\Models\Language;
use App\Models\Project;
namespace Arbify\Arb\Exporter;

use Arbify\Contracts\Arb\ArbExporter as ArbExporterContract;
use Arbify\Contracts\Arb\ArbFormatter;
use Arbify\Contracts\Repositories\MessageRepository;
use Arbify\Contracts\Repositories\MessageValueRepository;
use Arbify\Models\Language;
use Arbify\Models\Project;
use Illuminate\Filesystem\FilesystemAdapter;
use InvalidArgumentException;
use Storage;
Expand Down
2 changes: 1 addition & 1 deletion app/Arb/Exporter/ExportedFile.php
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace App\Arb\Exporter;
namespace Arbify\Arb\Exporter;

class ExportedFile
{
Expand Down
2 changes: 1 addition & 1 deletion app/Console/Kernel.php
@@ -1,6 +1,6 @@
<?php

namespace App\Console;
namespace Arbify\Console;

use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
Expand Down
8 changes: 4 additions & 4 deletions app/Contracts/Arb/ArbExporter.php
Expand Up @@ -2,11 +2,11 @@

declare(strict_types=1);

namespace App\Contracts\Arb;
namespace Arbify\Contracts\Arb;

use App\Arb\Exporter\ExportedFile;
use App\Models\Language;
use App\Models\Project;
use Arbify\Arb\Exporter\ExportedFile;
use Arbify\Models\Language;
use Arbify\Models\Project;
use Symfony\Component\HttpFoundation\StreamedResponse;

interface ArbExporter
Expand Down
4 changes: 2 additions & 2 deletions app/Contracts/Arb/ArbFormatter.php
Expand Up @@ -2,9 +2,9 @@

declare(strict_types=1);

namespace App\Contracts\Arb;
namespace Arbify\Contracts\Arb;

use App\Models\Message;
use Arbify\Models\Message;
use Illuminate\Support\Collection;

interface ArbFormatter
Expand Down
2 changes: 1 addition & 1 deletion app/Contracts/Repositories/CountryFlagRepository.php
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace App\Contracts\Repositories;
namespace Arbify\Contracts\Repositories;

interface CountryFlagRepository
{
Expand Down
6 changes: 3 additions & 3 deletions app/Contracts/Repositories/LanguageRepository.php
Expand Up @@ -2,10 +2,10 @@

declare(strict_types=1);

namespace App\Contracts\Repositories;
namespace Arbify\Contracts\Repositories;

use App\Models\Language;
use App\Models\Project;
use Arbify\Models\Language;
use Arbify\Models\Project;
use Illuminate\Contracts\Pagination\LengthAwarePaginator;
use Illuminate\Support\Collection;

Expand Down
6 changes: 3 additions & 3 deletions app/Contracts/Repositories/MessageRepository.php
Expand Up @@ -2,10 +2,10 @@

declare(strict_types=1);

namespace App\Contracts\Repositories;
namespace Arbify\Contracts\Repositories;

use App\Models\Message;
use App\Models\Project;
use Arbify\Models\Message;
use Arbify\Models\Project;
use Illuminate\Support\Collection;

interface MessageRepository
Expand Down
10 changes: 5 additions & 5 deletions app/Contracts/Repositories/MessageValueRepository.php
Expand Up @@ -2,12 +2,12 @@

declare(strict_types=1);

namespace App\Contracts\Repositories;
namespace Arbify\Contracts\Repositories;

use App\Models\Language;
use App\Models\Message;
use App\Models\MessageValue;
use App\Models\Project;
use Arbify\Models\Language;
use Arbify\Models\Message;
use Arbify\Models\MessageValue;
use Arbify\Models\Project;
use Illuminate\Support\Collection;

interface MessageValueRepository
Expand Down
8 changes: 4 additions & 4 deletions app/Contracts/Repositories/ProjectMemberRepository.php
Expand Up @@ -2,11 +2,11 @@

declare(strict_types=1);

namespace App\Contracts\Repositories;
namespace Arbify\Contracts\Repositories;

use App\Models\Project;
use App\Models\ProjectMember;
use App\Models\User;
use Arbify\Models\Project;
use Arbify\Models\ProjectMember;
use Arbify\Models\User;
use Illuminate\Support\Collection;

interface ProjectMemberRepository
Expand Down
6 changes: 3 additions & 3 deletions app/Contracts/Repositories/ProjectRepository.php
Expand Up @@ -2,10 +2,10 @@

declare(strict_types=1);

namespace App\Contracts\Repositories;
namespace Arbify\Contracts\Repositories;

use App\Models\Project;
use App\Models\User;
use Arbify\Models\Project;
use Arbify\Models\User;
use Illuminate\Contracts\Pagination\LengthAwarePaginator;

interface ProjectRepository
Expand Down
4 changes: 2 additions & 2 deletions app/Contracts/Repositories/SecretRepository.php
Expand Up @@ -2,9 +2,9 @@

declare(strict_types=1);

namespace App\Contracts\Repositories;
namespace Arbify\Contracts\Repositories;

use App\Models\User;
use Arbify\Models\User;
use Illuminate\Contracts\Pagination\LengthAwarePaginator;
use Laravel\Sanctum\PersonalAccessToken as Secret;

Expand Down
2 changes: 1 addition & 1 deletion app/Contracts/Repositories/SettingsRepository.php
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace App\Contracts\Repositories;
namespace Arbify\Contracts\Repositories;

interface SettingsRepository
{
Expand Down
6 changes: 3 additions & 3 deletions app/Contracts/Repositories/UserRepository.php
Expand Up @@ -2,10 +2,10 @@

declare(strict_types=1);

namespace App\Contracts\Repositories;
namespace Arbify\Contracts\Repositories;

use App\Models\Project;
use App\Models\User;
use Arbify\Models\Project;
use Arbify\Models\User;
use Illuminate\Contracts\Pagination\LengthAwarePaginator;
use Illuminate\Support\Collection;

Expand Down
2 changes: 1 addition & 1 deletion app/Exceptions/Handler.php
@@ -1,6 +1,6 @@
<?php

namespace App\Exceptions;
namespace Arbify\Exceptions;

use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Throwable;
Expand Down
5 changes: 2 additions & 3 deletions app/Facades/Settings.php
Expand Up @@ -2,10 +2,9 @@

declare(strict_types=1);

namespace App\Facades;
namespace Arbify\Facades;

use App\Contracts\Repositories\SettingsRepository;
use App\SettingsAccessor;
use Arbify\SettingsAccessor;
use Illuminate\Support\Facades\Facade;

class Settings extends Facade
Expand Down
12 changes: 6 additions & 6 deletions app/Http/Controllers/Api/ProjectArbController.php
Expand Up @@ -2,13 +2,13 @@

declare(strict_types=1);

namespace App\Http\Controllers\Api;
namespace Arbify\Http\Controllers\Api;

use App\Contracts\Arb\ArbExporter;
use App\Contracts\Repositories\MessageValueRepository;
use App\Http\Controllers\Controller;
use App\Models\Language;
use App\Models\Project;
use Arbify\Contracts\Arb\ArbExporter;
use Arbify\Contracts\Repositories\MessageValueRepository;
use Arbify\Http\Controllers\Controller;
use Arbify\Models\Language;
use Arbify\Models\Project;
use Symfony\Component\HttpFoundation\Response;

class ProjectArbController extends Controller
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/Controller.php
@@ -1,6 +1,6 @@
<?php

namespace App\Http\Controllers;
namespace Arbify\Http\Controllers;

use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
use Illuminate\Foundation\Bus\DispatchesJobs;
Expand Down
6 changes: 3 additions & 3 deletions app/Http/Controllers/Web/AccountController.php
@@ -1,9 +1,9 @@
<?php

namespace App\Http\Controllers\Web;
namespace Arbify\Http\Controllers\Web;

use App\Http\Controllers\Controller;
use App\Http\Requests\UpdatePassword;
use Arbify\Http\Controllers\Controller;
use Arbify\Http\Requests\UpdatePassword;
use Hash;
use Illuminate\Http\Request;
use Illuminate\View\View;
Expand Down
10 changes: 5 additions & 5 deletions app/Http/Controllers/Web/AdministrationController.php
@@ -1,11 +1,11 @@
<?php

namespace App\Http\Controllers\Web;
namespace Arbify\Http\Controllers\Web;

use App\Http\Controllers\Controller;
use App\Contracts\Repositories\LanguageRepository;
use App\Contracts\Repositories\SettingsRepository;
use App\Http\Requests\UpdateSettings;
use Arbify\Http\Controllers\Controller;
use Arbify\Contracts\Repositories\LanguageRepository;
use Arbify\Contracts\Repositories\SettingsRepository;
use Arbify\Http\Requests\UpdateSettings;
use Illuminate\View\View;
use Symfony\Component\HttpFoundation\Response;

Expand Down
6 changes: 3 additions & 3 deletions app/Http/Controllers/Web/Auth/ConfirmPasswordController.php
@@ -1,9 +1,9 @@
<?php

namespace App\Http\Controllers\Web\Auth;
namespace Arbify\Http\Controllers\Web\Auth;

use App\Http\Controllers\Controller;
use App\Providers\RouteServiceProvider;
use Arbify\Http\Controllers\Controller;
use Arbify\Providers\RouteServiceProvider;
use Illuminate\Foundation\Auth\ConfirmsPasswords;

class ConfirmPasswordController extends Controller
Expand Down
4 changes: 2 additions & 2 deletions app/Http/Controllers/Web/Auth/ForgotPasswordController.php
@@ -1,8 +1,8 @@
<?php

namespace App\Http\Controllers\Web\Auth;
namespace Arbify\Http\Controllers\Web\Auth;

use App\Http\Controllers\Controller;
use Arbify\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;

class ForgotPasswordController extends Controller
Expand Down
6 changes: 3 additions & 3 deletions app/Http/Controllers/Web/Auth/LoginController.php
@@ -1,9 +1,9 @@
<?php

namespace App\Http\Controllers\Web\Auth;
namespace Arbify\Http\Controllers\Web\Auth;

use App\Http\Controllers\Controller;
use App\Providers\RouteServiceProvider;
use Arbify\Http\Controllers\Controller;
use Arbify\Providers\RouteServiceProvider;
use Illuminate\Foundation\Auth\AuthenticatesUsers;

class LoginController extends Controller
Expand Down
8 changes: 4 additions & 4 deletions app/Http/Controllers/Web/Auth/RegisterController.php
@@ -1,10 +1,10 @@
<?php

namespace App\Http\Controllers\Web\Auth;
namespace Arbify\Http\Controllers\Web\Auth;

use App\Http\Controllers\Controller;
use App\Providers\RouteServiceProvider;
use App\Models\User;
use Arbify\Http\Controllers\Controller;
use Arbify\Providers\RouteServiceProvider;
use Arbify\Models\User;
use Auth;
use Illuminate\Auth\Events\Registered;
use Illuminate\Foundation\Auth\RedirectsUsers;
Expand Down
6 changes: 3 additions & 3 deletions app/Http/Controllers/Web/Auth/ResetPasswordController.php
@@ -1,9 +1,9 @@
<?php

namespace App\Http\Controllers\Web\Auth;
namespace Arbify\Http\Controllers\Web\Auth;

use App\Http\Controllers\Controller;
use App\Providers\RouteServiceProvider;
use Arbify\Http\Controllers\Controller;
use Arbify\Providers\RouteServiceProvider;
use Illuminate\Foundation\Auth\ResetsPasswords;

class ResetPasswordController extends Controller
Expand Down
6 changes: 3 additions & 3 deletions app/Http/Controllers/Web/Auth/VerificationController.php
@@ -1,9 +1,9 @@
<?php

namespace App\Http\Controllers\Web\Auth;
namespace Arbify\Http\Controllers\Web\Auth;

use App\Http\Controllers\Controller;
use App\Providers\RouteServiceProvider;
use Arbify\Http\Controllers\Controller;
use Arbify\Providers\RouteServiceProvider;
use Illuminate\Foundation\Auth\VerifiesEmails;

class VerificationController extends Controller
Expand Down
4 changes: 2 additions & 2 deletions app/Http/Controllers/Web/DashboardController.php
@@ -1,8 +1,8 @@
<?php

namespace App\Http\Controllers\Web;
namespace Arbify\Http\Controllers\Web;

use App\Http\Controllers\Controller;
use Arbify\Http\Controllers\Controller;
use Illuminate\View\View;

class DashboardController extends Controller
Expand Down
12 changes: 6 additions & 6 deletions app/Http/Controllers/Web/LanguageController.php
@@ -1,12 +1,12 @@
<?php

namespace App\Http\Controllers\Web;
namespace Arbify\Http\Controllers\Web;

use App\Http\Controllers\Controller;
use App\Contracts\Repositories\CountryFlagRepository;
use App\Contracts\Repositories\LanguageRepository;
use App\Http\Requests\StoreLanguage;
use App\Models\Language;
use Arbify\Http\Controllers\Controller;
use Arbify\Contracts\Repositories\CountryFlagRepository;
use Arbify\Contracts\Repositories\LanguageRepository;
use Arbify\Http\Requests\StoreLanguage;
use Arbify\Models\Language;
use Illuminate\View\View;
use Symfony\Component\HttpFoundation\Response;

Expand Down

0 comments on commit 0f06453

Please sign in to comment.