Php7.3
This commit is contained in:
parent
bbafdd18af
commit
76b10be898
@ -8,8 +8,8 @@ use Illuminate\Http\Request;
|
|||||||
|
|
||||||
class ProductsController extends Controller
|
class ProductsController extends Controller
|
||||||
{
|
{
|
||||||
private ProductsRepositoryInterface $productsRepository;
|
private $productsRepository;
|
||||||
private int $paginationSize = 10;
|
private $paginationSize = 10;
|
||||||
|
|
||||||
public function __construct(ProductsRepositoryInterface $productsRepository)
|
public function __construct(ProductsRepositoryInterface $productsRepository)
|
||||||
{
|
{
|
||||||
|
@ -14,7 +14,7 @@ use Validator, DB, Hash, Mail;
|
|||||||
|
|
||||||
class UsersController extends Controller
|
class UsersController extends Controller
|
||||||
{
|
{
|
||||||
private UsersRepositoryInterface $usersRepository;
|
private $usersRepository;
|
||||||
|
|
||||||
public function __construct(UsersRepositoryInterface $usersRepository)
|
public function __construct(UsersRepositoryInterface $usersRepository)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user