for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Imanghafoori\MakeSure;
class Chain
{
public $data = [];
private $phpunit;
public function __construct($phpunit)
$this->phpunit = $phpunit;
}
public function __destruct()
(new CheckExpectations($this, $this->phpunit))->check();