for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace LibLynx\Connect\Resource;
/**
* Provides a simple wrapper around a LibLynx identification resource
* @package LibLynx\Connect
*
* @property \stdClass $id
* @property \stdClass $ip
* @property \stdClass $url
* @property \stdClass $user_agent
* @property \stdClass $account
* @property \stdClass $status
*/
class Identification extends AbstractResource
{
public function isIdentified()
return $this->status == 'identified';
}
public function requiresWayf()
return $this->status == 'wayf';
public function getWayfUrl()
return $this->getLink('wayf');