From 44cddbd694dfca3e2c6c96c7cc0c178573416c44 Mon Sep 17 00:00:00 2001 From: jeroendedauw Date: Mon, 27 Oct 2014 16:52:48 +0100 Subject: [PATCH] Add type hint --- src/Faker/Documentor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Faker/Documentor.php b/src/Faker/Documentor.php index acce8dd56c..f13df1f002 100644 --- a/src/Faker/Documentor.php +++ b/src/Faker/Documentor.php @@ -6,7 +6,7 @@ class Documentor { protected $generator; - public function __construct($generator) + public function __construct(Generator $generator) { $this->generator = $generator; }