From f47f9a0da7f00b93500ef84dc970d0e57bcfc149 Mon Sep 17 00:00:00 2001 From: Bilge Date: Tue, 1 Dec 2015 17:59:07 +0000 Subject: [PATCH] Change unnecessary double quotes to single quotes --- lib/Doctrine/Common/Inflector/Inflector.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Common/Inflector/Inflector.php b/lib/Doctrine/Common/Inflector/Inflector.php index a53828ab..5b09c55c 100644 --- a/lib/Doctrine/Common/Inflector/Inflector.php +++ b/lib/Doctrine/Common/Inflector/Inflector.php @@ -252,7 +252,7 @@ public static function tableize($word) */ public static function classify($word) { - return str_replace(" ", "", ucwords(strtr($word, "_-", " "))); + return str_replace(' ', '', ucwords(strtr($word, '_-', ' '))); } /**