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