This commit is contained in:
Artur Nowakowski 2019-12-05 15:19:09 +01:00
parent bbafdd18af
commit 76b10be898
2 changed files with 3 additions and 3 deletions

View File

@ -8,8 +8,8 @@ use Illuminate\Http\Request;
class ProductsController extends Controller
{
private ProductsRepositoryInterface $productsRepository;
private int $paginationSize = 10;
private $productsRepository;
private $paginationSize = 10;
public function __construct(ProductsRepositoryInterface $productsRepository)
{

View File

@ -14,7 +14,7 @@ use Validator, DB, Hash, Mail;
class UsersController extends Controller
{
private UsersRepositoryInterface $usersRepository;
private $usersRepository;
public function __construct(UsersRepositoryInterface $usersRepository)
{