1
0
Fork 0
mirror of synced 2024-06-03 11:24:48 +12:00
appwrite/app/sdks/php/src/Appwrite/Service.php
2019-09-30 11:43:40 +05:30

20 lines
252 B
PHP

<?php
namespace Appwrite;
abstract class Service
{
/**
* @var Client
*/
protected $client;
/**
* @param Client $client
*/
public function __construct(Client $client)
{
$this->client = $client;
}
}