From f75dda759d681c1993f993459130ee7f35161e54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=B6nthal?= Date: Tue, 9 Jul 2013 15:33:04 +0200 Subject: [PATCH] simplified extension check in classmap generation --- src/Composer/Autoload/ClassMapGenerator.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Composer/Autoload/ClassMapGenerator.php b/src/Composer/Autoload/ClassMapGenerator.php index e408eea75..880bef2a8 100644 --- a/src/Composer/Autoload/ClassMapGenerator.php +++ b/src/Composer/Autoload/ClassMapGenerator.php @@ -66,9 +66,10 @@ class ClassMapGenerator $map = array(); foreach ($path as $file) { + /** @var \SplFileInfo $file */ $filePath = $file->getRealPath(); - if (!in_array(pathinfo($filePath, PATHINFO_EXTENSION), array('php', 'inc'))) { + if (!in_array($file->getExtension(), array('php', 'inc'))) { continue; }