|
<?php
|
|
|
|
namespace cooini\iniRepo\repositories;
|
|
|
|
abstract class repository implements repositoryInterface
|
|
{
|
|
public string $url;
|
|
public string $auth_token;
|
|
public function __construct($repo_url, $auth)
|
|
{
|
|
$this->url = $repo_url;
|
|
$this->auth_token = $auth;
|
|
}
|
|
} |