summaryrefslogtreecommitdiffstats
path: root/Core/Util/ClassUtils.php
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2014-12-22 17:44:09 +0100
committerFabien Potencier <fabien.potencier@gmail.com>2014-12-22 17:44:09 +0100
commit080ac3294fac8b217afe620230600fb427bd2f51 (patch)
tree094ebe0d9c29984af20b5d219219c824f6dc3486 /Core/Util/ClassUtils.php
parentf54d46e132c02eb833419c24a9d8f4bdcd080167 (diff)
parent20711216c818e8a57cdb5d3bc1b2fc8bc34757c9 (diff)
downloadsymfony-security-080ac3294fac8b217afe620230600fb427bd2f51.zip
symfony-security-080ac3294fac8b217afe620230600fb427bd2f51.tar.gz
symfony-security-080ac3294fac8b217afe620230600fb427bd2f51.tar.bz2
Merge branch '2.5' into 2.6
* 2.5: [2.3] CS And DocBlock Fixes [2.3] CS Fixes [FrameworkBundle] Fixed Translation loader and update translation command. [Console] remove « use » statement for PHP built-in exception classes. [SecurityBundle] adds unit tests suite for SecurityDataCollector class. Conflicts: src/Symfony/Bundle/SecurityBundle/DataCollector/SecurityDataCollector.php src/Symfony/Bundle/SecurityBundle/Tests/DataCollector/SecurityDataCollectorTest.php src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php src/Symfony/Component/DependencyInjection/Dumper/YamlDumper.php src/Symfony/Component/Form/Form.php src/Symfony/Component/HttpKernel/HttpCache/HttpCache.php src/Symfony/Component/OptionsResolver/Options.php src/Symfony/Component/OptionsResolver/OptionsResolver.php src/Symfony/Component/Process/ProcessPipes.php src/Symfony/Component/Stopwatch/Stopwatch.php src/Symfony/Component/Translation/Loader/XliffFileLoader.php src/Symfony/Component/Validator/Tests/Constraints/AbstractComparisonValidatorTestCase.php
Diffstat (limited to 'Core/Util/ClassUtils.php')
-rw-r--r--Core/Util/ClassUtils.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/Core/Util/ClassUtils.php b/Core/Util/ClassUtils.php
index 1d40c8d..0585204 100644
--- a/Core/Util/ClassUtils.php
+++ b/Core/Util/ClassUtils.php
@@ -30,14 +30,14 @@ class ClassUtils
const MARKER = '__CG__';
/**
- * Length of the proxy marker
+ * Length of the proxy marker.
*
* @var int
*/
const MARKER_LENGTH = 6;
/**
- * This class should not be instantiated
+ * This class should not be instantiated.
*/
private function __construct()
{
@@ -47,6 +47,7 @@ class ClassUtils
* Gets the real class name of a class name that could be a proxy.
*
* @param string|object
+ *
* @return string
*/
public static function getRealClass($object)