mirror of
https://github.com/friendica/friendica-directory
synced 2024-11-11 06:51:34 +01:00
21 lines
271 B
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;
|
|
}
|
|
}
|