| Total Complexity | 4 | 
| Total Lines | 39 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 11 | class Graph | ||
| 12 | { | ||
| 13 | /** | ||
| 14 | * @var Client | ||
| 15 | */ | ||
| 16 | private $client; | ||
| 17 | |||
| 18 | 1 | public function __construct(Client $client) | |
| 21 | } | ||
| 22 | |||
| 23 | /** | ||
| 24 | * @param integer $appId | ||
| 25 | * @param integer $id | ||
| 26 | * @param integer|null $guestSpaceId | ||
| 27 | * @param bool $isIframe | ||
| 28 | * @param bool $isShowTitle | ||
| 29 | * @param array $options | ||
| 30 | * @return string | ||
| 31 | */ | ||
| 32 | 1 | public function get($appId, $id, $guestSpaceId = null, $isIframe = false, $isShowTitle = false, array $options = []): string | |
| 52 |