Line 25 | Line 25 |
---|---|
public function accept() |
public function accept() |
return !$this->current()->isDir() || $filename[0] !== '.'; | return $filename[0] !== '.' || !$this->current()->isDir(); |
} | } |
Line 25 | Line 25 |
---|---|
public function accept() |
public function accept() |
return !$this->current()->isDir() || $filename[0] !== '.'; | return $filename[0] !== '.' || !$this->current()->isDir(); |
} | } |