Skip to content

Commit

Permalink
[Purgers] Add no action purger (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
zlatkoverk authored Sep 20, 2021
1 parent 05e9521 commit 487072e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Purger/NullPurger.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

declare(strict_types=1);

namespace SofaScore\Purgatory\Purger;


final class NullPurger implements PurgerInterface
{
public function purge(iterable $urls): void
{
//Do nothing
}
}

0 comments on commit 487072e

Please sign in to comment.