Files
crm.clientright.ru/modules/Workflow2/extends/additionally/c_printnode/PrintNode/CredentialsInterface.php

42 lines
752 B
PHP
Executable File

<?php
namespace PrintNode;
/**
* Credentials
*
* Credential store used by Request
* when communicating with API server.
*/
interface CredentialsInterface
{
/**
* Constructor
* @param mixed $username
* @param mixed $password
* @return Credentials
*/
/**
* Convert object into a string
* @param void
* @return string
*/
public function __toString();
/**
* Set property on object
* @param mixed $propertyName
* @param mixed $value
* @return void
*/
public function __set($propertyName, $value);
/**
* Get property from object
* @param mixed $propertyName
* @return mixed
*/
public function __get($propertyName);
}