for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace tests\DevBoardLib\GithubObjectApiFacade;
class SampleDataProvider
{
public function getAllMilestones()
$content = file_get_contents(__DIR__.'/sample-data/devboard/test-hitman/milestones.json');
return json_decode($content, true);
}
public function getAllIssues()
$content = file_get_contents(__DIR__.'/sample-data/devboard/test-hitman/issues.json');