12 namespace Symfony\Component\Finder\Adapter;
47 if (!array_key_exists($name, self::$areSupported)) {
48 self::$areSupported[$name] = $this->
canBeUsed();
51 return self::$areSupported[$name];
80 $this->maxDepth = PHP_INT_MAX;
82 foreach ($depths as $comparator) {
83 switch ($comparator->getOperator()) {
85 $this->minDepth = $comparator->getTarget() + 1;
88 $this->minDepth = $comparator->getTarget();
91 $this->maxDepth = $comparator->getTarget() - 1;
94 $this->maxDepth = $comparator->getTarget();
97 $this->minDepth = $this->maxDepth = $comparator->getTarget();