Fixed incorrect instances of Collection class

This commit is contained in:
Chris Kankiewicz
2020-04-21 12:23:27 -07:00
parent 02ef254499
commit 7342e96ce3
2 changed files with 2 additions and 2 deletions

View File

@@ -78,7 +78,7 @@ class FinderFactory
/**
* Get a collection of hidden file paths.
*
* @return \Illuminate\Support\Collection
* @return \Tightenco\Collect\Support\Collection
*/
protected function hiddenFiles(): Collection
{

View File

@@ -3,11 +3,11 @@
namespace App\Factories;
use DI\Container;
use Illuminate\Support\Collection;
use RuntimeException;
use Symfony\Component\Translation\Loader\YamlFileLoader;
use Symfony\Component\Translation\Translator;
use Symfony\Contracts\Translation\TranslatorInterface;
use Tightenco\Collect\Support\Collection;
class TranslationFactory
{