for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Konsulting\JustGivingApiSdk\ResourceClients;
class ProjectClient extends BaseClient
{
protected $aliases = [
'retrieve' => 'GetGlobalProjectById',
];
public function retrieve($projectId)
return $this->get("project/global/" . $projectId);
}