Implemented product monking data

This commit is contained in:
Kevin Frantz
2018-07-14 21:58:36 +02:00
parent f51177f703
commit 0ace91c6a7
5 changed files with 153 additions and 23 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace repository;
/**
*
* @author kevinfrantz
*
*/
abstract class AbstractRepository
{
/**
* @var \PDO
*/
protected $database;
public function __construct(\PDO $database){
$this->database = $database;
}
}