mirror of
https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
synced 2025-03-14 19:35:19 +01:00
21 lines
268 B
PHP
21 lines
268 B
PHP
|
<?php
|
||
|
namespace repository;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author kevinfrantz
|
||
|
*
|
||
|
*/
|
||
|
abstract class AbstractRepository
|
||
|
{
|
||
|
/**
|
||
|
* @var \PDO
|
||
|
*/
|
||
|
protected $database;
|
||
|
|
||
|
public function __construct(\PDO $database){
|
||
|
$this->database = $database;
|
||
|
}
|
||
|
}
|
||
|
|