for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace kalanis\EmailApi\Basics;
/**
* Class Result
* @package kalanis\EmailApi\Basics
* Result from sending service
*/
class Result
{
public bool $status = false;
public ?string $data = null;
public ?string $remoteId = null;
public function __construct(bool $status = false, ?string $data = null, ?string $remoteId = null)
$this->status = $status;
$this->data = $data;
$this->remoteId = $remoteId;
}
public function getStatus(): bool
return $this->status;
public function getData(): ?string
return $this->data;
public function getRemoteId(): ?string
return $this->remoteId;