Skip to content

Commit

Permalink
fixed some issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dmaaj committed Aug 2, 2022
1 parent 8f683d0 commit 862cece
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

namespace Shekel\ShekelLib;
namespace Shekel\ShekelLib\Middlewares;

use Closure;
use Illuminate\Http\Request;
use Illuminate\Auth\GenericUser;
use Shekel\ShekelLib\AuthService;
use Shekel\ShekelLib\Services\AuthService;
use Illuminate\Support\Facades\Auth;

class ServiceAuthentication
Expand Down
4 changes: 2 additions & 2 deletions src/Services/AuthService.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Shekel\ShekelLib;
namespace Shekel\ShekelLib\Services;

use Shekel\ShekelLib\ShekelBaseService;
use Shekel\ShekelLib\Services\ShekelBaseService;

class AuthService extends ShekelBaseService {

Expand Down
4 changes: 2 additions & 2 deletions src/Services/CarService.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Shekel\ShekelLib;
namespace Shekel\ShekelLib\Services;

use Shekel\ShekelLib\ShekelBaseService;
use Shekel\ShekelLib\Services\ShekelBaseService;

class CarService extends ShekelBaseService {

Expand Down
4 changes: 2 additions & 2 deletions src/Services/LoanService.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Shekel\ShekelLib;
namespace Shekel\ShekelLib\Services;

use Shekel\ShekelLib\ShekelBaseService;
use Shekel\ShekelLib\Services\ShekelBaseService;

class LoanService extends ShekelBaseService {

Expand Down
2 changes: 1 addition & 1 deletion src/Services/ShekelBaseService.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Shekel\ShekelLib;
namespace Shekel\ShekelLib\Services;

use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Config;
Expand Down
4 changes: 2 additions & 2 deletions src/Services/UploadService.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Shekel\ShekelLib;
namespace Shekel\ShekelLib\Services;

use Shekel\ShekelLib\ShekelBaseService;
use Shekel\ShekelLib\Services\ShekelBaseService;

class UploadService extends ShekelBaseService {

Expand Down

0 comments on commit 862cece

Please sign in to comment.