mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-08-16 07:18:09 +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();
|
|
}
|
|
}
|