From abe0521be7a09d1147696dcd5a46992cacdcde4a Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 21 Aug 2018 10:21:52 +0100 Subject: [PATCH] Remove string typehint --- src/Service/Partials.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Service/Partials.php b/src/Service/Partials.php index 8ab8fff..c03e306 100644 --- a/src/Service/Partials.php +++ b/src/Service/Partials.php @@ -36,7 +36,7 @@ class Partials * * @return string The full path. */ - protected function getFilePattern(string $directoryName) + protected function getFilePattern($directoryName) { return getcwd() . DIRECTORY_SEPARATOR . $directoryName . DIRECTORY_SEPARATOR . '*.php'; }