Skip to content

Commit

Permalink
Reverted all namespace renaming from App\ to app\
Browse files Browse the repository at this point in the history
  • Loading branch information
zakhenry committed Jul 10, 2015
1 parent 21d748b commit 75f3d09
Show file tree
Hide file tree
Showing 31 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion api/app/Console/Commands/ApiaryValidateCommand.php
@@ -1,6 +1,6 @@
<?php

namespace app\Console\Commands;
namespace App\Console\Commands;

use Illuminate\Console\Command;

Expand Down
2 changes: 1 addition & 1 deletion api/app/Console/Commands/GenerateKeysCommand.php
@@ -1,6 +1,6 @@
<?php

namespace app\Console\Commands;
namespace App\Console\Commands;

use Crypt_RSA;
use Illuminate\Console\Command;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Console/Kernel.php
@@ -1,6 +1,6 @@
<?php

namespace app\Console;
namespace App\Console;

use Illuminate\Console\Scheduling\Schedule;
use Laravel\Lumen\Console\Kernel as ConsoleKernel;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Exceptions/BadRequestException.php
@@ -1,6 +1,6 @@
<?php

namespace app\Exceptions;
namespace App\Exceptions;

use Exception;
use Symfony\Component\HttpKernel\Exception\HttpException;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Exceptions/FatalErrorException.php
@@ -1,6 +1,6 @@
<?php

namespace app\Exceptions;
namespace App\Exceptions;

use RuntimeException;

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

namespace app\Exceptions;
namespace App\Exceptions;

/*
* Exceptions fix added care of
Expand Down
2 changes: 1 addition & 1 deletion api/app/Exceptions/Handler.php
@@ -1,6 +1,6 @@
<?php

namespace app\Exceptions;
namespace App\Exceptions;

use App\Http\Controllers\BaseController;
use Exception;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Exceptions/TokenInvalidException.php
@@ -1,6 +1,6 @@
<?php

namespace app\Exceptions;
namespace App\Exceptions;

use Exception;
use Symfony\Component\HttpKernel\Exception\HttpException;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Exceptions/UnauthorizedException.php
@@ -1,6 +1,6 @@
<?php

namespace app\Exceptions;
namespace App\Exceptions;

use Exception;
use Symfony\Component\HttpKernel\Exception\HttpException;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Exceptions/UnprocessableEntityException.php
@@ -1,6 +1,6 @@
<?php

namespace app\Exceptions;
namespace App\Exceptions;

use Exception;
use Symfony\Component\HttpKernel\Exception\HttpException;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Exceptions/ValidationException.php
@@ -1,6 +1,6 @@
<?php

namespace app\Exceptions;
namespace App\Exceptions;

use Illuminate\Support\MessageBag;
use Symfony\Component\HttpKernel\Exception\HttpException;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Extensions/JWTAuth/NamshiAdapter.php
@@ -1,6 +1,6 @@
<?php

namespace app\Extensions\JWTAuth;
namespace App\Extensions\JWTAuth;

use App\Exceptions\TokenInvalidException;
use Exception;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Extensions/JWTAuth/PayloadFactory.php
@@ -1,6 +1,6 @@
<?php

namespace app\Extensions\JWTAuth;
namespace App\Extensions\JWTAuth;

use Tymon\JWTAuth\PayloadFactory as PayloadFactoryBase;

Expand Down
2 changes: 1 addition & 1 deletion api/app/Http/Controllers/AuthController.php
@@ -1,6 +1,6 @@
<?php

namespace app\Http\Controllers;
namespace App\Http\Controllers;

use App\Exceptions\BadRequestException;
use App\Exceptions\TokenInvalidException;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Http/Controllers/BaseController.php
@@ -1,6 +1,6 @@
<?php

namespace app\Http\Controllers;
namespace App\Http\Controllers;

use App;
use Illuminate\Database\Eloquent\Collection;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Http/Controllers/TestController.php
@@ -1,6 +1,6 @@
<?php

namespace app\Http\Controllers;
namespace App\Http\Controllers;

use App\Http\Validators\TestEntityValidator;
use App\Repositories\TestRepository;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Http/Controllers/UserController.php
@@ -1,6 +1,6 @@
<?php

namespace app\Http\Controllers;
namespace App\Http\Controllers;

class UserController extends BaseController
{
Expand Down
2 changes: 1 addition & 1 deletion api/app/Http/Middleware/ExampleMiddleware.php
@@ -1,6 +1,6 @@
<?php

namespace app\Http\Middleware;
namespace App\Http\Middleware;

use Closure;

Expand Down
2 changes: 1 addition & 1 deletion api/app/Http/Middleware/TransformInputData.php
@@ -1,6 +1,6 @@
<?php

namespace app\Http\Middleware;
namespace App\Http\Middleware;

use Closure;

Expand Down
2 changes: 1 addition & 1 deletion api/app/Http/Transformers/BaseTransformer.php
@@ -1,6 +1,6 @@
<?php

namespace app\Http\Transformers;
namespace App\Http\Transformers;

use Illuminate\Contracts\Support\Arrayable;
use League\Fractal\TransformerAbstract;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Http/Validators/TestEntityValidator.php
@@ -1,6 +1,6 @@
<?php

namespace app\Http\Validators;
namespace App\Http\Validators;

use App\Services\Validator;

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

namespace app\Jobs;
namespace App\Jobs;

use Illuminate\Contracts\Bus\SelfHandling;
use Illuminate\Contracts\Queue\ShouldBeQueued;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Providers/AppServiceProvider.php
@@ -1,6 +1,6 @@
<?php

namespace app\Providers;
namespace App\Providers;

use Illuminate\Support\ServiceProvider;

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

namespace app\Providers;
namespace App\Providers;

use App\Extensions\JWTAuth\PayloadFactory;
use Tymon\JWTAuth\Providers\JWTAuthServiceProvider as ServiceProvider;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Repositories/BaseRepository.php
@@ -1,6 +1,6 @@
<?php

namespace app\Repositories;
namespace App\Repositories;

use App\Exceptions\FatalErrorException;
use Illuminate\Container\Container as App;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Repositories/TestRepository.php
@@ -1,6 +1,6 @@
<?php

namespace app\Repositories;
namespace App\Repositories;

class TestRepository extends BaseRepository
{
Expand Down
2 changes: 1 addition & 1 deletion api/app/Repositories/UserRepository.php
@@ -1,6 +1,6 @@
<?php

namespace app\Repositories;
namespace App\Repositories;

use Cache;
use Illuminate\Container\Container as App;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Services/ModelFactory.php
@@ -1,6 +1,6 @@
<?php

namespace app\Services;
namespace App\Services;

use Illuminate\Container\Container;
use Illuminate\Support\Facades\App;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Services/ModelFactoryInstance.php
@@ -1,6 +1,6 @@
<?php

namespace app\Services;
namespace App\Services;

use App\Http\Transformers\BaseTransformer;
use Illuminate\Contracts\Support\Arrayable;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Services/Transformer.php
@@ -1,6 +1,6 @@
<?php

namespace app\Services;
namespace App\Services;

use Illuminate\Contracts\Support\Arrayable;
use Illuminate\Pagination\LengthAwarePaginator;
Expand Down
2 changes: 1 addition & 1 deletion api/app/Services/Validator.php
@@ -1,6 +1,6 @@
<?php

namespace app\Services;
namespace App\Services;

use App\Exceptions\ValidationException;
use Illuminate\Container\Container as App;
Expand Down

0 comments on commit 75f3d09

Please sign in to comment.