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