Use PHP constructor property promotion

This commit is contained in:
Peter Kokot
2023-05-24 08:19:33 +02:00
parent 6513260001
commit 003bb06c7e
3 changed files with 6 additions and 12 deletions

View File

@@ -70,11 +70,8 @@ include 'views/foo-list.php';
<?php
class FooModel
{
protected $db;
public function __construct(PDO $db)
public function __construct(protected PDO $db)
{
$this->db = $db;
}
public function getAllFoos() {