for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thepixeldeveloper\Mondo\Response\Ping;
/**
* Class WhoAmI
*
* @package Thepixeldeveloper\Mondo\Response\Ping
*/
class WhoAmI
{
* Client authenticated?
* @var boolean
protected $authenticated;
* Client id.
* @var string
protected $clientId;
* User id.
protected $userId;
* @return boolean
public function isAuthenticated()
return (bool) $this->authenticated;
}
* @return string
public function getClientId()
return $this->clientId;
public function getUserId()
return $this->userId;