for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ParityBit\DeploymentNotifier\ChangeInspectors;
use ParityBit\DeploymentNotifier\Deployment;
class GitChangeInspector implements ChangeInspector
{
protected $repoDirectory;
public function __construct($repoDirectory)
$this->repoDirectory = $repoDirectory;
}
public function getChangesFromDeployment(Deployment $deployment)