for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* primaERP - Token handling Class.
*
* @author Vítězslav Dvořák <[email protected]>
* @copyright (C) 2017 Vitex Software
*/
namespace primaERP;
* Token handling Class.
* @url http://devdoc.primaerp.com/rest/authentication.html
class Authentication extends ApiClient
{
* Saves obejct instace (singleton...).
* @var Shared
private static $_instance = null;
$_instance
This check marks private properties in classes that are never used. Those properties can be removed.
* Sekce užitá objektem.
* Section used by object
* @var string
public $section = 'auth';
* Token
* @param mixed $init
* @param array $options
public function __construct($init = null, $options = array())
parent::__construct($init, $options);
}
This check marks private properties in classes that are never used. Those properties can be removed.