for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Domain\Snapshotting;
use Domain\Aggregates\AggregateRoot;
/**
* @author Sebastiaan Hilbers <[email protected]>
*/
class NoSnapshottingPolicy implements SnapshottingPolicy
{
public function shouldCreateSnapshot(AggregateRoot $root)
return false;
}