1
0
Fork 0
mirror of https://github.com/friendica/friendica-directory synced 2024-11-16 08:37:37 +01:00
friendica-docker/src/classes/Model.php

21 lines
268 B
PHP
Raw Normal View History

2018-11-12 03:08:33 +01:00
<?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;
}
}