Initialised composer, started prototyping.

This commit is contained in:
conky
2022-10-12 23:37:30 +03:00
commit 4bfc4ccdaf
5 changed files with 113 additions and 0 deletions

20
src/ClientInterface.php Normal file
View File

@@ -0,0 +1,20 @@
<?php
namespace Toloka\PhpApi;
interface ClientInterface {
/**
* Login using credentials.
*
* @param string $login
*
* @param string $password
*
* @throws InvalidAuthCredentials
*
* @return void
*/
public function login(string $login, string $password): void;
}