mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-08-14 06:18:10 +02:00
12 lines
198 B
PHP
12 lines
198 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Import\PurgeStrategy;
|
|
|
|
class PurgeNothingPurgeStrategy extends PurgeStrategy
|
|
{
|
|
public function listObjectsToPurge()
|
|
{
|
|
return array();
|
|
}
|
|
}
|