for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JoshGaber\NovaUnit;
abstract class MockComponent
{
protected $component;
public function __construct($component)
$this->component = $component;
}