Skip to content
This repository was archived by the owner on Jul 1, 2025. It is now read-only.

Commit bbdafe8

Browse files
committed
Option to get a single project
1 parent 98080fd commit bbdafe8

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

src/Project.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,16 @@ function __construct($client, $id)
2525
$this->id = $id;
2626
}
2727

28+
/**
29+
* Get the details of this project
30+
*
31+
* @return array
32+
*/
33+
public function get()
34+
{
35+
return $this->client->get(sprintf('projects/%d', $this->id));
36+
}
37+
2838
/**
2939
* Get all the people associated with this project
3040
*

0 commit comments

Comments
 (0)