1
0
Fork 0
mirror of synced 2024-10-05 12:43:13 +13:00
appwrite/app/sdks/php/src/Appwrite/Service.php
2019-10-01 21:10:33 +03:00

19 lines
No EOL
251 B
PHP

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