SimpleSoftwareIO\SMS\Drivers\CallFireSMS::checkMessages PHP Method

checkMessages() public method

Checks the server for messages and returns their results.
public checkMessages ( array $options = [] ) : array
$options array
return array
    public function checkMessages(array $options = [])
    {
        $this->buildCall('/text');
        $rawMessages = $this->getRequest()->xml();
        return $this->makeMessages($rawMessages->Text);
    }