summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVyacheslav Pavlov <elliotweb@gmail.com>2016-07-22 17:17:18 +0300
committerNicolas Grekas <nicolas.grekas@gmail.com>2016-07-26 06:40:54 +0200
commit71a22992fff802d88f138f4fe9cf8cbe9eabf724 (patch)
treebfb91ad60dad3169f891b2f5d3770d01860753a3
parentf2589f884f36fb6a5fbb678d9a4e1db1384efeff (diff)
downloadsymfony-security-71a22992fff802d88f138f4fe9cf8cbe9eabf724.zip
symfony-security-71a22992fff802d88f138f4fe9cf8cbe9eabf724.tar.gz
symfony-security-71a22992fff802d88f138f4fe9cf8cbe9eabf724.tar.bz2
Fixed bugs in names of classes and methods.
-rw-r--r--Acl/Resources/bin/generateSql.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Acl/Resources/bin/generateSql.php b/Acl/Resources/bin/generateSql.php
index 4b1b38d..c425651 100644
--- a/Acl/Resources/bin/generateSql.php
+++ b/Acl/Resources/bin/generateSql.php
@@ -37,7 +37,7 @@ $reflection = new ReflectionClass('Doctrine\\DBAL\\Platforms\\AbstractPlatform')
$finder = new Finder();
$finder->name('*Platform.php')->in(dirname($reflection->getFileName()));
foreach ($finder as $file) {
- require_once $file->getPathName();
+ require_once $file->getPathname();
$className = 'Doctrine\\DBAL\\Platforms\\'.$file->getBasename('.php');
$reflection = new ReflectionClass($className);