seregazhuk\PinterestBot\Api\Response::getClientInfo PHP Method

getClientInfo() public method

public getClientInfo ( ) : array | null
return array | null
    public function getClientInfo()
    {
        return $this->clientInfo;
    }

Usage Example

コード例 #1
0
 /** @test */
 public function it_should_return_client_info()
 {
     $response = new Response();
     $clientInfo = ['ip' => '127.0.0.1'];
     $response->fill(['client_context' => $clientInfo]);
     $this->assertEquals($clientInfo, $response->getClientInfo());
 }
All Usage Examples Of seregazhuk\PinterestBot\Api\Response::getClientInfo