Skip to content
This repository was archived by the owner on Feb 16, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace PWWEB\Core\Interfaces\User\Password;

use PWWEB\Core\Interfaces\BaseRepositoryInterface;
use Illuminate\Container\Container as Application;
use PWWEB\Core\Interfaces\BaseRepositoryInterface;
use PWWEB\Core\Models\User;
use PWWEB\Core\Models\User\Password\History;

Expand Down
3 changes: 1 addition & 2 deletions src/Interfaces/UserRepositoryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
namespace PWWEB\Core\Interfaces;

use Illuminate\Container\Container as Application;
use Illuminate\Database\Eloquent\Collection;
use PWWEB\Core\Interfaces\User\Password\HistoryRepositoryInterface;
use PWWEB\Core\Interfaces\BaseRepositoryInterface;
use PWWEB\Core\Models\User;
use Illuminate\Database\Eloquent\Collection;

/**
* PWWEB\Core\Interfaces\UserRepository UserRepository.
Expand Down
3 changes: 1 addition & 2 deletions src/Repositories/UserRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
namespace PWWEB\Core\Repositories;

use Illuminate\Container\Container as Application;
use Illuminate\Database\Eloquent\Collection;
use PWWEB\Core\Exceptions\User\NotFound as UserNotFoundException;
use PWWEB\Core\Exceptions\User\Password\HistoricPasswordNotAllowed as HistoricPasswordNotAllowedException;
use PWWEB\Core\Exceptions\User\Password\NotMatching as NotMatchingException;
use PWWEB\Core\Interfaces\User\Password\HistoryRepositoryInterface;
use PWWEB\Core\Interfaces\UserRepositoryInterface;
use PWWEB\Core\Models\User;
use PWWEB\Core\Repositories\BaseRepository;
use Illuminate\Database\Eloquent\Collection;

/**
* PWWEB\Core\Repositories\UserRepository UserRepository.
Expand Down
2 changes: 0 additions & 2 deletions src/resources/routes/web.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

use Illuminate\Foundation\Auth\EmailVerificationRequest;
use Illuminate\Http\Request;
use PWWEB\Core\Controllers\Address\TypeController;
use PWWEB\Core\Controllers\AddressController;
use PWWEB\Core\Controllers\CountryController;
Expand Down