You are here

IgnoredPathsIteratorFilter.php in Automatic Updates 7

File

IgnoredPathsIteratorFilter.php
View source
<?php

/**
 * Provides an iterator filter for file paths which are ignored.
 */
class IgnoredPathsIteratorFilter extends \FilterIterator {
  use IgnoredPathsTrait;

  /**
   * {@inheritdoc}
   */
  public function accept() {
    return self::isIgnoredPath($this
      ->current());
  }

}

Classes

Namesort descending Description
IgnoredPathsIteratorFilter Provides an iterator filter for file paths which are ignored.