1
0
Fork 0
mirror of https://github.com/friendica/friendica-directory synced 2024-06-11 12:35:11 +02:00
friendica-docker/src/classes/Model.php

21 lines
271 B
PHP

<?php
namespace Friendica\Directory;
/**
* @author Hypolite Petovan <hypolite@mrpetovan.com>
*/
class Model
{
/**
*
* @var \Atlas\Pdo\Connection
*/
protected $atlas;
public function __construct(\Atlas\Pdo\Connection $atlas)
{
$this->atlas = $atlas;
}
}