1
0
Fork 0
mirror of https://github.com/friendica/friendica-directory synced 2024-05-27 15:08:18 +02:00
friendica-docker/src/classes/Model.php
2018-11-11 21:08:33 -05:00

21 lines
268 B
PHP

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