for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TestMonitor\DevOps\Resources;
class Account extends Resource
{
/**
* The id of the account.
*
* @var string
*/
public $id;
* The name of the account.
public $name;
* Create a new resource instance.
* @param string $id
* @param string $name
public function __construct(string $id, string $name)
$this->id = $id;
$this->name = $name;
}