Skip to content

Commit

Permalink
Merge pull request #61 from delatbabel/fix-typehint
Browse files Browse the repository at this point in the history
Fix type hint
  • Loading branch information
barryvdh authored Jul 8, 2017
2 parents 1e2c8b5 + f3f2f54 commit 1f32305
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Driver.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Driver extends elFinderVolumeDriver
/** @var CacheInterface $fs */
protected $fscache;

/** @var UrlBuilderFactory $urlBuilder */
/** @var UrlBuilder $urlBuilder */
protected $urlBuilder = null;

/** @var ImageManager $imageManager */
Expand Down Expand Up @@ -344,7 +344,7 @@ protected function _subdirs($path)
$filter = function ($item) {
return $item['type'] == 'dir';
};

$dirs = array_filter($contents, $filter);
return !empty($dirs);
}
Expand Down

0 comments on commit 1f32305

Please sign in to comment.